Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

JitsiConferenceErrors.js 1.0KB

123456789101112131415161718192021222324252627282930313233343536
  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 client must be authenticated to create the conference.
  12. */
  13. AUTHENTICATION_REQUIRED: "conference.authenticationRequired",
  14. /**
  15. * Indicates that password cannot be set for this conference.
  16. */
  17. PASSWORD_NOT_SUPPORTED: "conference.passwordNotSupported",
  18. /**
  19. * Indicates that a connection error occurred when trying to join a
  20. * conference.
  21. */
  22. CONNECTION_ERROR: "conference.connectionError",
  23. /**
  24. * Indicates that the conference setup failed.
  25. */
  26. SETUP_FAILED: "conference.setup_failed",
  27. /**
  28. * Indicates that there is no available videobridge.
  29. */
  30. VIDEOBRIDGE_NOT_AVAILABLE: "conference.videobridgeNotAvailable"
  31. /**
  32. * Many more errors TBD here.
  33. */
  34. };
  35. module.exports = JitsiConferenceErrors;