Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

JitsiConferenceErrors.js 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /**
  2. * The errors for the conference.
  3. */
  4. /**
  5. * Indicates that client must be authenticated to create the conference.
  6. */
  7. export const AUTHENTICATION_REQUIRED = 'conference.authenticationRequired';
  8. /**
  9. * Indicates that chat error occurred.
  10. */
  11. export const CHAT_ERROR = 'conference.chatError';
  12. /**
  13. * Indicates that conference has been destroyed.
  14. */
  15. export const CONFERENCE_DESTROYED = 'conference.destroyed';
  16. /**
  17. * Indicates that max users limit has been reached.
  18. */
  19. export const CONFERENCE_MAX_USERS = 'conference.max_users';
  20. /**
  21. * Indicates that a connection error occurred when trying to join a conference.
  22. */
  23. export const CONNECTION_ERROR = 'conference.connectionError';
  24. /**
  25. * Indicates that the client has been forced to restart by jicofo when the
  26. * conference was migrated from one bridge to another.
  27. */
  28. export const CONFERENCE_RESTARTED = 'conference.restarted';
  29. /**
  30. * Indicates that a connection error is due to not allowed,
  31. * occurred when trying to join a conference.
  32. */
  33. export const NOT_ALLOWED_ERROR = 'conference.connectionError.notAllowed';
  34. /**
  35. * Indicates that a connection error is due to not allowed,
  36. * occurred when trying to join a conference, only approved members are allowed to join.
  37. */
  38. export const MEMBERS_ONLY_ERROR = 'conference.connectionError.membersOnly';
  39. /**
  40. * Indicates that a connection error is due to denied access to the room,
  41. * occurred after joining a lobby room and access is denied by the room moderators.
  42. */
  43. export const CONFERENCE_ACCESS_DENIED = 'conference.connectionError.accessDenied';
  44. /**
  45. * Indicates that focus error happened.
  46. */
  47. export const FOCUS_DISCONNECTED = 'conference.focusDisconnected';
  48. /**
  49. * Indicates that focus left the conference.
  50. */
  51. export const FOCUS_LEFT = 'conference.focusLeft';
  52. /**
  53. * Indicates that graceful shutdown happened.
  54. */
  55. export const GRACEFUL_SHUTDOWN = 'conference.gracefulShutdown';
  56. /**
  57. * Indicates that the media connection has failed.
  58. */
  59. export const ICE_FAILED = 'conference.iceFailed';
  60. /**
  61. * Indicates that the versions of the server side components are incompatible
  62. * with the client side.
  63. */
  64. export const INCOMPATIBLE_SERVER_VERSIONS
  65. = 'conference.incompatible_server_versions';
  66. /**
  67. * Indicates that offer/answer had failed.
  68. */
  69. export const OFFER_ANSWER_FAILED = 'conference.offerAnswerFailed';
  70. /**
  71. * Indicates that password cannot be set for this conference.
  72. */
  73. export const PASSWORD_NOT_SUPPORTED = 'conference.passwordNotSupported';
  74. /**
  75. * Indicates that a password is required in order to join the conference.
  76. */
  77. export const PASSWORD_REQUIRED = 'conference.passwordRequired';
  78. /**
  79. * Indicates that reservation system returned error.
  80. */
  81. export const RESERVATION_ERROR = 'conference.reservationError';
  82. /**
  83. * Indicates that there is no available videobridge.
  84. */
  85. export const VIDEOBRIDGE_NOT_AVAILABLE = 'conference.videobridgeNotAvailable';