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
path: root/app
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dzaporozhets@gitlab.com>2015-02-09 19:45:25 +0300
committerDmitriy Zaporozhets <dzaporozhets@gitlab.com>2015-02-09 19:45:25 +0300
commit3e4e5f7063ee555ae63528f7df9241022db5d916 (patch)
tree351ed6208d7298db37a824aabfa3d3b506dff998 /app
parent0a34f2dcb562098c481140246f7ac22683b38d76 (diff)
parent03c8bf39e10b52bc5e9f128fe53876ad8b398dac (diff)
Merge branch 'improve-oauth-ux' into 'master'
Improve OAuth UX See merge request !1489
Diffstat (limited to 'app')
-rw-r--r--app/controllers/omniauth_callbacks_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/omniauth_callbacks_controller.rb b/app/controllers/omniauth_callbacks_controller.rb
index 442a1cf7518..bb9d65c9ed6 100644
--- a/app/controllers/omniauth_callbacks_controller.rb
+++ b/app/controllers/omniauth_callbacks_controller.rb
@@ -44,7 +44,7 @@ class OmniauthCallbacksController < Devise::OmniauthCallbacksController
if current_user
# Add new authentication method
current_user.identities.find_or_create_by(extern_uid: oauth['uid'], provider: oauth['provider'])
- redirect_to profile_path
+ redirect_to profile_account_path, notice: 'Authentication method updated'
else
@user = Gitlab::OAuth::User.new(oauth)
@user.save