Use double quotes in controllers/

This commit is contained in:
Julian Herrero
2019-03-13 22:19:49 +01:00
parent 3c313c9c52
commit d24376f6ad
78 changed files with 236 additions and 236 deletions

View File

@@ -2,8 +2,8 @@ class Admin::SettingsController < Admin::BaseController
def index
all_settings = Setting.all.group_by { |s| s.type }
@settings = all_settings['common']
@feature_flags = all_settings['feature']
@settings = all_settings["common"]
@feature_flags = all_settings["feature"]
end
def update