]> cat aescling's git repositories - mastodon.git/commitdiff
Fix styling in /auth/edit (#9117)
authorThibG <thib@sitedethib.com>
Fri, 26 Oct 2018 20:49:17 +0000 (22:49 +0200)
committerEugen Rochko <eugen@zeonfederated.com>
Fri, 26 Oct 2018 20:49:17 +0000 (22:49 +0200)
app/controllers/auth/registrations_controller.rb

index a19f4e62efad4cfe076c67c43d1c01d18c7715e6..088832be3c528fa8723c6802db80eec0f943a3eb 100644 (file)
@@ -8,7 +8,7 @@ class Auth::RegistrationsController < Devise::RegistrationsController
   before_action :configure_sign_up_params, only: [:create]
   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
@@ -81,7 +81,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