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.

JitsiRecorderErrors.js 512B

1234567891011121314151617181920212223
  1. /**
  2. * Enumeration with the errors for the conference.
  3. * @type {{string: string}}
  4. */
  5. var JitsiRecorderErrors = {
  6. /**
  7. * Indicates that the recorder is currently unavailable.
  8. */
  9. RECORDER_UNAVAILABLE: "recorder.unavailable",
  10. /**
  11. * Indicates that the authentication token is missing.
  12. */
  13. NO_TOKEN: "recorder.noToken",
  14. /**
  15. * Indicates that a state change failed.
  16. */
  17. STATE_CHANGE_FAILED: "recorder.stateChangeFailed",
  18. };
  19. module.exports = JitsiRecorderErrors;