diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-07-23 10:30:24 +0200 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2019-07-23 10:51:12 +0200 |
commit | 8a89a2b0f40c427fc48e449aa166f5f60d5a9575 (patch) | |
tree | 5d98c44371d54a8223a2bfb146dc65a8e14d4f62 /app/controllers/settings/two_factor_authentication | |
parent | 444796b69b0cd2c7b4b95d3b3119e0b7a503f682 (diff) |
Revert some refactoring in order to make codebase closer to upstream
Diffstat (limited to 'app/controllers/settings/two_factor_authentication')
-rw-r--r-- | app/controllers/settings/two_factor_authentication/confirmations_controller.rb | 3 | ||||
-rw-r--r-- | app/controllers/settings/two_factor_authentication/recovery_codes_controller.rb | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/app/controllers/settings/two_factor_authentication/confirmations_controller.rb b/app/controllers/settings/two_factor_authentication/confirmations_controller.rb index 1708d71d7..3145e092d 100644 --- a/app/controllers/settings/two_factor_authentication/confirmations_controller.rb +++ b/app/controllers/settings/two_factor_authentication/confirmations_controller.rb @@ -3,6 +3,9 @@ module Settings module TwoFactorAuthentication class ConfirmationsController < BaseController + layout 'admin' + + before_action :authenticate_user! before_action :ensure_otp_secret skip_before_action :require_functional! diff --git a/app/controllers/settings/two_factor_authentication/recovery_codes_controller.rb b/app/controllers/settings/two_factor_authentication/recovery_codes_controller.rb index 56763e10c..09a759860 100644 --- a/app/controllers/settings/two_factor_authentication/recovery_codes_controller.rb +++ b/app/controllers/settings/two_factor_authentication/recovery_codes_controller.rb @@ -3,6 +3,10 @@ module Settings module TwoFactorAuthentication class RecoveryCodesController < BaseController + layout 'admin' + + before_action :authenticate_user! + skip_before_action :require_functional! def create |