GRN2-xx: General bug fixes and improvements for 2.3 (#701)

* General bug fixes and improvements for 2.3

* Removed mins change

* Removed mins change rspec
This commit is contained in:
farhatahmad
2019-07-31 11:33:29 -04:00
committed by Jesus Federico
parent 58201d5763
commit 5f237194b1
5 changed files with 9 additions and 9 deletions

View File

@ -58,9 +58,9 @@ module AdminsHelper
def recording_default_visibility_string
if Setting.find_or_create_by!(provider: user_settings_provider)
.get_value("Default Recording Visibility") == "public"
I18n.t("administrator.site_settings.recording_visibility.public")
I18n.t("recording.visibility.public")
else
I18n.t("administrator.site_settings.recording_visibility.private")
I18n.t("recording.visibility.unlisted")
end
end