diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-10-01 13:31:27 +0200 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2019-10-01 13:48:47 +0200 |
commit | 857c67f31b23b9c496e07eda41755ba449a37f17 (patch) | |
tree | 5d3b08f3eebd9cae1d31ef16681662ab843011e7 /app/controllers/auth | |
parent | 65db9df011a3e13efa79f4e56343aa69bdad7716 (diff) |
Fix new user confirmation page styling
Diffstat (limited to 'app/controllers/auth')
-rw-r--r-- | app/controllers/auth/setup_controller.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/controllers/auth/setup_controller.rb b/app/controllers/auth/setup_controller.rb index 46c5f2958..db5a866f2 100644 --- a/app/controllers/auth/setup_controller.rb +++ b/app/controllers/auth/setup_controller.rb @@ -3,6 +3,7 @@ class Auth::SetupController < ApplicationController layout 'auth' + before_action :set_pack before_action :authenticate_user! before_action :require_unconfirmed_or_pending! before_action :set_body_classes @@ -55,4 +56,8 @@ class Auth::SetupController < ApplicationController def missing_email? truthy_param?(:missing_email) end + + def set_pack + use_pack 'auth' + end end |