|
@@ -160,15 +160,15 @@ config.dropbox.redirectURI = '{{ .Env.DROPBOX_REDIRECT_URI }}';
|
|
// Whether to show the possibility to share file recording with other people
|
|
// Whether to show the possibility to share file recording with other people
|
|
// (e.g. meeting participants), based on the actual implementation
|
|
// (e.g. meeting participants), based on the actual implementation
|
|
// on the backend.
|
|
// on the backend.
|
|
-config.recordingService.sharingEnabled = $ENABLE_FILE_RECORDING_SHARING;
|
|
|
|
|
|
+config.recordingService.sharingEnabled = {{ $ENABLE_FILE_RECORDING_SHARING }};
|
|
{{ end -}}
|
|
{{ end -}}
|
|
|
|
|
|
|
|
|
|
// Local recording configuration.
|
|
// Local recording configuration.
|
|
if (!config.hasOwnProperty('localRecording')) config.localRecording = {};
|
|
if (!config.hasOwnProperty('localRecording')) config.localRecording = {};
|
|
-config.localRecording.disable = $DISABLE_LOCAL_RECORDING;
|
|
|
|
-config.localRecording.notifyAllParticipants = $ENABLE_LOCAL_RECORDING_NOTIFY_ALL_PARTICIPANT;
|
|
|
|
-config.localRecording.disableSelfRecording = $ENABLE_LOCAL_RECORDING_SELF_START;
|
|
|
|
|
|
+config.localRecording.disable = {{ $DISABLE_LOCAL_RECORDING }};
|
|
|
|
+config.localRecording.notifyAllParticipants = {{ $ENABLE_LOCAL_RECORDING_NOTIFY_ALL_PARTICIPANT }};
|
|
|
|
+config.localRecording.disableSelfRecording = {{ $ENABLE_LOCAL_RECORDING_SELF_START }};
|
|
|
|
|
|
|
|
|
|
// Analytics.
|
|
// Analytics.
|
|
@@ -311,7 +311,7 @@ config.chromeExtensionBanner = {{ .Env.CHROME_EXTENSION_BANNER_JSON }};
|
|
{{ end -}}
|
|
{{ end -}}
|
|
|
|
|
|
// Disables profile and the edit of all fields from the profile settings (display name and email)
|
|
// Disables profile and the edit of all fields from the profile settings (display name and email)
|
|
-config.disableProfile = $DISABLE_PROFILE;
|
|
|
|
|
|
+config.disableProfile = {{ $DISABLE_PROFILE }};
|
|
|
|
|
|
// Advanced.
|
|
// Advanced.
|
|
//
|
|
//
|