diff options
author | Reverite <github@reverite.sh> | 2019-10-01 16:55:05 -0700 |
---|---|---|
committer | Reverite <github@reverite.sh> | 2019-10-01 16:55:05 -0700 |
commit | e9a8af8e06faf6590937111e8dad19397a340b5f (patch) | |
tree | 0846329d205f5a94f7d7141ceb9fd4680041e597 /app/controllers/auth/setup_controller.rb | |
parent | 01001ba118d7adcd4966c893cf95db32fe76c273 (diff) | |
parent | 857c67f31b23b9c496e07eda41755ba449a37f17 (diff) |
Merge branch 'glitch' into production
Diffstat (limited to 'app/controllers/auth/setup_controller.rb')
-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 |