|
|
|
@ -695,6 +695,65 @@ var config = { |
|
|
|
|
ignoreStartMuted |
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
Use this array to configure which notifications will be shown to the user |
|
|
|
|
The items correspond to the title or description key of that notification |
|
|
|
|
Some of these notifications also depend on some other internal logic to be displayed or not, |
|
|
|
|
so adding them here will not ensure they will always be displayed |
|
|
|
|
|
|
|
|
|
A falsy value for this prop will result in having all notifications enabled (e.g null, undefined, false) |
|
|
|
|
*/ |
|
|
|
|
// notifications: [
|
|
|
|
|
// 'connection.CONNFAIL', // shown when the connection fails,
|
|
|
|
|
// 'dialog.cameraNotSendingData', // shown when there's no feed from user's camera
|
|
|
|
|
// 'dialog.kickTitle', // shown when user has been kicked
|
|
|
|
|
// 'dialog.liveStreaming', // livestreaming notifications (pending, on, off, limits)
|
|
|
|
|
// 'dialog.lockTitle', // shown when setting conference password fails
|
|
|
|
|
// 'dialog.maxUsersLimitReached', // shown when maximmum users limit has been reached
|
|
|
|
|
// 'dialog.micNotSendingData', // shown when user's mic is not sending any audio
|
|
|
|
|
// 'dialog.passwordNotSupportedTitle', // shown when setting conference password fails due to password format
|
|
|
|
|
// 'dialog.recording', // recording notifications (pending, on, off, limits)
|
|
|
|
|
// 'dialog.remoteControlTitle', // remote control notifications (allowed, denied, start, stop, error)
|
|
|
|
|
// 'dialog.reservationError',
|
|
|
|
|
// 'dialog.serviceUnavailable', // shown when server is not reachable
|
|
|
|
|
// 'dialog.sessTerminated', // shown when there is a failed conference session
|
|
|
|
|
// 'dialog.tokenAuthFailed', // show when an invalid jwt is used
|
|
|
|
|
// 'dialog.transcribing', // transcribing notifications (pending, off)
|
|
|
|
|
// 'dialOut.statusMessage', // shown when dial out status is updated.
|
|
|
|
|
// 'liveStreaming.busy', // shown when livestreaming service is busy
|
|
|
|
|
// 'liveStreaming.failedToStart', // shown when livestreaming fails to start
|
|
|
|
|
// 'liveStreaming.unavailableTitle', // shown when livestreaming service is not reachable
|
|
|
|
|
// 'lobby.joinRejectedMessage', // shown when while in a lobby, user's request to join is rejected
|
|
|
|
|
// 'lobby.notificationTitle', // shown when lobby is toggled and when join requests are allowed / denied
|
|
|
|
|
// 'localRecording.localRecording', // shown when a local recording is started
|
|
|
|
|
// 'notify.disconnected', // shown when a participant has left
|
|
|
|
|
// 'notify.grantedTo', // shown when moderator rights were granted to a participant
|
|
|
|
|
// 'notify.invitedOneMember', // shown when 1 participant has been invited
|
|
|
|
|
// 'notify.invitedThreePlusMembers', // shown when 3+ participants have been invited
|
|
|
|
|
// 'notify.invitedTwoMembers', // shown when 2 participants have been invited
|
|
|
|
|
// 'notify.kickParticipant', // shown when a participant is kicked
|
|
|
|
|
// 'notify.mutedRemotelyTitle', // shown when user is muted by a remote party
|
|
|
|
|
// 'notify.mutedTitle', // shown when user has been muted upon joining,
|
|
|
|
|
// 'notify.newDeviceAudioTitle', // prompts the user to use a newly detected audio device
|
|
|
|
|
// 'notify.newDeviceCameraTitle', // prompts the user to use a newly detected camera
|
|
|
|
|
// 'notify.passwordRemovedRemotely', // shown when a password has been removed remotely
|
|
|
|
|
// 'notify.passwordSetRemotely', // shown when a password has been set remotely
|
|
|
|
|
// 'notify.raisedHand', // shown when a partcipant used raise hand,
|
|
|
|
|
// 'notify.startSilentTitle', // shown when user joined with no audio
|
|
|
|
|
// 'prejoin.errorDialOut',
|
|
|
|
|
// 'prejoin.errorDialOutDisconnected',
|
|
|
|
|
// 'prejoin.errorDialOutFailed',
|
|
|
|
|
// 'prejoin.errorDialOutStatus',
|
|
|
|
|
// 'prejoin.errorStatusCode',
|
|
|
|
|
// 'prejoin.errorValidation',
|
|
|
|
|
// 'recording.busy', // shown when recording service is busy
|
|
|
|
|
// 'recording.failedToStart', // shown when recording fails to start
|
|
|
|
|
// 'recording.unavailableTitle', // shown when recording service is not reachable
|
|
|
|
|
// 'toolbar.noAudioSignalTitle', // shown when a broken mic is detected
|
|
|
|
|
// 'toolbar.noisyAudioInputTitle', // shown when noise is detected for the current microphone
|
|
|
|
|
// 'toolbar.talkWhileMutedPopup', // shown when user tries to speak while muted
|
|
|
|
|
// 'transcribing.failedToStart' // shown when transcribing fails to start
|
|
|
|
|
// ]
|
|
|
|
|
|
|
|
|
|
// Allow all above example options to include a trailing comma and
|
|
|
|
|
// prevent fear when commenting out the last value.
|
|
|
|
|