diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-01-28 03:56:10 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-01-28 03:56:10 +0100 |
commit | f4bc9620a9701db17cb8f651643f65c984e65c27 (patch) | |
tree | 373ecda59f2135b45ba1fda41dcc9ab06560886a /app/controllers/settings | |
parent | 04bce0cdf28402c3433403f399ee10113f6f5fdf (diff) |
Update settings to re-use admin layout, one big navigation tree, improve settings forms
Diffstat (limited to 'app/controllers/settings')
-rw-r--r-- | app/controllers/settings/preferences_controller.rb | 2 | ||||
-rw-r--r-- | app/controllers/settings/profiles_controller.rb | 2 | ||||
-rw-r--r-- | app/controllers/settings/two_factor_auths_controller.rb | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/app/controllers/settings/preferences_controller.rb b/app/controllers/settings/preferences_controller.rb index f273b5f21..5ad825675 100644 --- a/app/controllers/settings/preferences_controller.rb +++ b/app/controllers/settings/preferences_controller.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class Settings::PreferencesController < ApplicationController - layout 'auth' + layout 'admin' before_action :authenticate_user! diff --git a/app/controllers/settings/profiles_controller.rb b/app/controllers/settings/profiles_controller.rb index 4be549958..2b74b4e94 100644 --- a/app/controllers/settings/profiles_controller.rb +++ b/app/controllers/settings/profiles_controller.rb @@ -3,7 +3,7 @@ class Settings::ProfilesController < ApplicationController include ObfuscateFilename - layout 'auth' + layout 'admin' before_action :authenticate_user! before_action :set_account diff --git a/app/controllers/settings/two_factor_auths_controller.rb b/app/controllers/settings/two_factor_auths_controller.rb index 66a82aab7..f34295cb9 100644 --- a/app/controllers/settings/two_factor_auths_controller.rb +++ b/app/controllers/settings/two_factor_auths_controller.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class Settings::TwoFactorAuthsController < ApplicationController - layout 'auth' + layout 'admin' before_action :authenticate_user! |