Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
liberty
host
Smilodon
Commits
215e6493
Commit
215e6493
authored
Oct 26, 2018
by
ThibG
Committed by
Eugen Rochko
Oct 26, 2018
Browse files
Fix styling in /auth/edit (#9117)
parent
e53cc673
Changes
1
Hide whitespace changes
Inline
Side-by-side
app/controllers/auth/registrations_controller.rb
View file @
215e6493
...
...
@@ -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
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment