123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- /**
- * Enumeration with the errors for the conference.
- * @type {{string: string}}
- */
- var JitsiConferenceErrors = {
- /**
- * Indicates that a password is required in order to join the conference.
- */
- PASSWORD_REQUIRED: "conference.passwordRequired",
- /**
- * Indicates that client must be authenticated to create the conference.
- */
- AUTHENTICATION_REQUIRED: "conference.authenticationRequired",
- /**
- * Indicates that password cannot be set for this conference.
- */
- PASSWORD_NOT_SUPPORTED: "conference.passwordNotSupported",
- /**
- * Indicates that a connection error occurred when trying to join a
- * conference.
- */
- CONNECTION_ERROR: "conference.connectionError",
- /**
- * Indicates that the conference setup failed.
- */
- SETUP_FAILED: "conference.setup_failed",
- /**
- * Indicates that there is no available videobridge.
- */
- VIDEOBRIDGE_NOT_AVAILABLE: "conference.videobridgeNotAvailable",
- /**
- * Indicates that reservation system returned error.
- */
- RESERVATION_ERROR: "conference.reservationError",
- /**
- * Indicates that graceful shutdown happened.
- */
- GRACEFUL_SHUTDOWN: "conference.gracefulShutdown",
- /**
- * Indicates that jingle fatal error happened.
- */
- JINGLE_FATAL_ERROR: "conference.jingleFatalError",
- /**
- * Indicates that conference has been destroyed.
- */
- CONFERENCE_DESTROYED: "conference.destroyed",
- /**
- * Indicates that chat error occurred.
- */
- CHAT_ERROR: "conference.chatError",
- /**
- * Indicates that focus error happened.
- */
- FOCUS_DISCONNECTED: "conference.focusDisconnected"
- /**
- * Many more errors TBD here.
- */
- };
-
- module.exports = JitsiConferenceErrors;
|