summaryrefslogtreecommitdiff
path: root/app/controllers/profiles/passwords_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/profiles/passwords_controller.rb')
-rw-r--r--app/controllers/profiles/passwords_controller.rb10
1 files changed, 2 insertions, 8 deletions
diff --git a/app/controllers/profiles/passwords_controller.rb b/app/controllers/profiles/passwords_controller.rb
index b719a7fe9a9..94ac62cb32c 100644
--- a/app/controllers/profiles/passwords_controller.rb
+++ b/app/controllers/profiles/passwords_controller.rb
@@ -1,6 +1,4 @@
class Profiles::PasswordsController < ApplicationController
- layout :determine_layout
-
skip_before_action :check_password_expiration, only: [:new, :create]
before_action :set_user
@@ -67,14 +65,10 @@ class Profiles::PasswordsController < ApplicationController
end
def set_title
- @title = "New password"
- end
-
- def determine_layout
if [:new, :create].include?(action_name.to_sym)
- 'navless'
+ @title = "New password"
else
- 'profile'
+ super
end
end