Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLin Jen-Shin <godfat@godfat.org>2019-04-15 18:52:12 +0300
committerLin Jen-Shin <godfat@godfat.org>2019-04-15 18:52:12 +0300
commit57cdf56aa7df41b013d9c47c6b12bf5a9e20e4f4 (patch)
treeaa4e6e8aa09f2bc845cd36a7abcd7cb00b694c64 /app/controllers/profiles
parentfcb70d9bbbc14dc695fa87dc1dea5fa7fe78f6d2 (diff)
parent650f40865e5d8136cb366fbde689c4100aafb0c5 (diff)
Merge branch 'forbid-the-usage-of-reload' into 'master'
Forbid the usage of reload Closes #60218 See merge request gitlab-org/gitlab-ce!27125
Diffstat (limited to 'app/controllers/profiles')
-rw-r--r--app/controllers/profiles/passwords_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/profiles/passwords_controller.rb b/app/controllers/profiles/passwords_controller.rb
index a0391d677c4..7038447581c 100644
--- a/app/controllers/profiles/passwords_controller.rb
+++ b/app/controllers/profiles/passwords_controller.rb
@@ -55,7 +55,7 @@ class Profiles::PasswordsController < Profiles::ApplicationController
flash[:notice] = "Password was successfully updated. Please login with it"
redirect_to new_user_session_path
else
- @user.reload
+ @user.reset
render 'edit'
end
end