diff options
author | Thibaut Girka <thib@sitedethib.com> | 2018-10-27 18:54:26 +0200 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2018-10-27 18:54:26 +0200 |
commit | c13cfeac0952b112140d48a076d685730ff39b06 (patch) | |
tree | 304e82845e241ed35840e5e578dd496efb3f74a4 /app/controllers | |
parent | 5bb8563f6c0ec9021d6e70d85544147e6c2d0f44 (diff) | |
parent | eef8d9a5f7d07bf785c6a7184e01374e211c6d7f (diff) |
Merge branch 'master' into glitch-soc/merge-upstream
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/auth/registrations_controller.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/auth/registrations_controller.rb b/app/controllers/auth/registrations_controller.rb index fcfd1830a..0696dea86 100644 --- a/app/controllers/auth/registrations_controller.rb +++ b/app/controllers/auth/registrations_controller.rb @@ -9,7 +9,7 @@ class Auth::RegistrationsController < Devise::RegistrationsController before_action :set_pack before_action :set_sessions, only: [:edit, :update] before_action :set_instance_presenter, only: [:new, :create, :update] - before_action :set_body_classes, only: [:new, :create] + before_action :set_body_classes, only: [:new, :create, :edit, :update] def destroy not_found @@ -86,7 +86,7 @@ class Auth::RegistrationsController < Devise::RegistrationsController end def set_body_classes - @body_classes = 'lighter' + @body_classes = %w(edit update).include?(action_name) ? 'admin' : 'lighter' end def set_invite |