You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

JitsiConferenceErrors.js 659B

123456789101112131415161718192021222324
  1. /**
  2. * Enumeration with the errors for the conference.
  3. * @type {{string: string}}
  4. */
  5. var JitsiConferenceErrors = {
  6. /**
  7. * Indicates that a password is required in order to join the conference.
  8. */
  9. PASSWORD_REQUIRED: "conference.passwordRequired",
  10. /**
  11. * Indicates that a connection error occurred when trying to join a
  12. * conference.
  13. */
  14. CONNECTION_ERROR: "conference.connectionError",
  15. /**
  16. * Indicates that there is no available videobridge.
  17. */
  18. VIDEOBRIDGE_NOT_AVAILABLE: "conference.videobridgeNotAvailable"
  19. /**
  20. * Many more errors TBD here.
  21. */
  22. };
  23. module.exports = JitsiConferenceErrors;