Browse Source

Fix styling in /auth/edit (#9117)

pull/4/head
ThibG 5 years ago
committed by Eugen Rochko
parent
commit
215e649391
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      app/controllers/auth/registrations_controller.rb

+ 2
- 2
app/controllers/auth/registrations_controller.rb View 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

Loading…
Cancel
Save