Browse Source

Merge pull request #744 from hardye/jitsi-recording

Remove the recording button from the Jitsi UI if recording is disabled.
pull/745/head
Slavi Pantaleev 5 years ago
committed by GitHub
parent
commit
cc683a85ab
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      roles/matrix-jitsi/templates/web/interface_config.js.j2

+ 4
- 2
roles/matrix-jitsi/templates/web/interface_config.js.j2 View File

@@ -205,9 +205,11 @@ var interfaceConfig = {
{% if matrix_jitsi_enable_transcriptions %} {% if matrix_jitsi_enable_transcriptions %}
'closedcaptions', 'closedcaptions',
{% endif %} {% endif %}

{% if matrix_jitsi_enable_recording %}
'recording',
{% endif %}
'microphone', 'camera', 'desktop', 'embedmeeting', 'fullscreen', 'microphone', 'camera', 'desktop', 'embedmeeting', 'fullscreen',
'fodeviceselection', 'hangup', 'profile', 'chat', 'recording',
'fodeviceselection', 'hangup', 'profile', 'chat',
'livestreaming', 'etherpad', 'sharedvideo', 'settings', 'raisehand', 'livestreaming', 'etherpad', 'sharedvideo', 'settings', 'raisehand',
'videoquality', 'filmstrip', 'invite', 'feedback', 'stats', 'shortcuts', 'videoquality', 'filmstrip', 'invite', 'feedback', 'stats', 'shortcuts',
'tileview', 'videobackgroundblur', 'download', 'help', 'mute-everyone', 'security' 'tileview', 'videobackgroundblur', 'download', 'help', 'mute-everyone', 'security'


Loading…
Cancel
Save