|
@@ -691,6 +691,65 @@ var config = {
|
691
|
691
|
ignoreStartMuted
|
692
|
692
|
*/
|
693
|
693
|
|
|
694
|
+ /**
|
|
695
|
+ Use this array to configure which notifications will be shown to the user
|
|
696
|
+ The items correspond to the title or description key of that notification
|
|
697
|
+ Some of these notifications also depend on some other internal logic to be displayed or not,
|
|
698
|
+ so adding them here will not ensure they will always be displayed
|
|
699
|
+
|
|
700
|
+ A falsy value for this prop will result in having all notifications enabled (e.g null, undefined, false)
|
|
701
|
+ */
|
|
702
|
+ // notifications: [
|
|
703
|
+ // 'connection.CONNFAIL', // shown when the connection fails,
|
|
704
|
+ // 'dialog.cameraNotSendingData', // shown when there's no feed from user's camera
|
|
705
|
+ // 'dialog.kickTitle', // shown when user has been kicked
|
|
706
|
+ // 'dialog.liveStreaming', // livestreaming notifications (pending, on, off, limits)
|
|
707
|
+ // 'dialog.lockTitle', // shown when setting conference password fails
|
|
708
|
+ // 'dialog.maxUsersLimitReached', // shown when maximmum users limit has been reached
|
|
709
|
+ // 'dialog.micNotSendingData', // shown when user's mic is not sending any audio
|
|
710
|
+ // 'dialog.passwordNotSupportedTitle', // shown when setting conference password fails due to password format
|
|
711
|
+ // 'dialog.recording', // recording notifications (pending, on, off, limits)
|
|
712
|
+ // 'dialog.remoteControlTitle', // remote control notifications (allowed, denied, start, stop, error)
|
|
713
|
+ // 'dialog.reservationError',
|
|
714
|
+ // 'dialog.serviceUnavailable', // shown when server is not reachable
|
|
715
|
+ // 'dialog.sessTerminated', // shown when there is a failed conference session
|
|
716
|
+ // 'dialog.tokenAuthFailed', // show when an invalid jwt is used
|
|
717
|
+ // 'dialog.transcribing', // transcribing notifications (pending, off)
|
|
718
|
+ // 'dialOut.statusMessage', // shown when dial out status is updated.
|
|
719
|
+ // 'liveStreaming.busy', // shown when livestreaming service is busy
|
|
720
|
+ // 'liveStreaming.failedToStart', // shown when livestreaming fails to start
|
|
721
|
+ // 'liveStreaming.unavailableTitle', // shown when livestreaming service is not reachable
|
|
722
|
+ // 'lobby.joinRejectedMessage', // shown when while in a lobby, user's request to join is rejected
|
|
723
|
+ // 'lobby.notificationTitle', // shown when lobby is toggled and when join requests are allowed / denied
|
|
724
|
+ // 'localRecording.localRecording', // shown when a local recording is started
|
|
725
|
+ // 'notify.disconnected', // shown when a participant has left
|
|
726
|
+ // 'notify.grantedTo', // shown when moderator rights were granted to a participant
|
|
727
|
+ // 'notify.invitedOneMember', // shown when 1 participant has been invited
|
|
728
|
+ // 'notify.invitedThreePlusMembers', // shown when 3+ participants have been invited
|
|
729
|
+ // 'notify.invitedTwoMembers', // shown when 2 participants have been invited
|
|
730
|
+ // 'notify.kickParticipant', // shown when a participant is kicked
|
|
731
|
+ // 'notify.mutedRemotelyTitle', // shown when user is muted by a remote party
|
|
732
|
+ // 'notify.mutedTitle', // shown when user has been muted upon joining,
|
|
733
|
+ // 'notify.newDeviceAudioTitle', // prompts the user to use a newly detected audio device
|
|
734
|
+ // 'notify.newDeviceCameraTitle', // prompts the user to use a newly detected camera
|
|
735
|
+ // 'notify.passwordRemovedRemotely', // shown when a password has been removed remotely
|
|
736
|
+ // 'notify.passwordSetRemotely', // shown when a password has been set remotely
|
|
737
|
+ // 'notify.raisedHand', // shown when a partcipant used raise hand,
|
|
738
|
+ // 'notify.startSilentTitle', // shown when user joined with no audio
|
|
739
|
+ // 'prejoin.errorDialOut',
|
|
740
|
+ // 'prejoin.errorDialOutDisconnected',
|
|
741
|
+ // 'prejoin.errorDialOutFailed',
|
|
742
|
+ // 'prejoin.errorDialOutStatus',
|
|
743
|
+ // 'prejoin.errorStatusCode',
|
|
744
|
+ // 'prejoin.errorValidation',
|
|
745
|
+ // 'recording.busy', // shown when recording service is busy
|
|
746
|
+ // 'recording.failedToStart', // shown when recording fails to start
|
|
747
|
+ // 'recording.unavailableTitle', // shown when recording service is not reachable
|
|
748
|
+ // 'toolbar.noAudioSignalTitle', // shown when a broken mic is detected
|
|
749
|
+ // 'toolbar.noisyAudioInputTitle', // shown when noise is detected for the current microphone
|
|
750
|
+ // 'toolbar.talkWhileMutedPopup', // shown when user tries to speak while muted
|
|
751
|
+ // 'transcribing.failedToStart' // shown when transcribing fails to start
|
|
752
|
+ // ]
|
694
|
753
|
|
695
|
754
|
// Allow all above example options to include a trailing comma and
|
696
|
755
|
// prevent fear when commenting out the last value.
|