GRN2-xx: Fixed issue with join warning displaying incorrectly (#1957)

* Fixed issue with room settings

* Update room join consent string
This commit is contained in:
Ahmad Farhat
2020-07-30 10:50:04 -04:00
committed by GitHub
parent af8c78fdee
commit ec93d5e472
6 changed files with 38 additions and 32 deletions

View File

@ -45,4 +45,13 @@ module RoomsHelper
def preupload_allowed?
@settings.get_value("Preupload Presentation") == "true"
end
def display_joiner_consent
# If the require consent setting is checked, then check the room setting, else, set to false
if recording_consent_required?
room_setting_with_config("recording")
else
false
end
end
end