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:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-05-18 12:10:09 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-05-18 12:10:09 +0300
commit21d0f7ad2dda300b204d3103d7970b7525ad91cc (patch)
tree4e18b88581d45b0d9850109d9680eec8c9b09000 /app/controllers/omniauth_callbacks_controller.rb
parent55e0080f9d6b971145ee95c62dbb65feacaa93f8 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/controllers/omniauth_callbacks_controller.rb')
-rw-r--r--app/controllers/omniauth_callbacks_controller.rb10
1 files changed, 7 insertions, 3 deletions
diff --git a/app/controllers/omniauth_callbacks_controller.rb b/app/controllers/omniauth_callbacks_controller.rb
index a2e0670d7e1..30d2925fa5b 100644
--- a/app/controllers/omniauth_callbacks_controller.rb
+++ b/app/controllers/omniauth_callbacks_controller.rb
@@ -167,7 +167,7 @@ class OmniauthCallbacksController < Devise::OmniauthCallbacksController
accept_pending_invitations(user: user) if new_user
persist_accepted_terms_if_required(user) if new_user
- store_after_sign_up_path_for_user if intent_to_register?
+ perform_registration_tasks(user, oauth['provider']) if intent_to_register?
sign_in_and_redirect_or_verify_identity(user, auth_user, new_user)
end
else
@@ -295,8 +295,12 @@ class OmniauthCallbacksController < Devise::OmniauthCallbacksController
Users::RespondToTermsService.new(user, terms).execute(accepted: true)
end
- def store_after_sign_up_path_for_user
- store_location_for(:user, users_sign_up_welcome_path)
+ def perform_registration_tasks(_user, _provider)
+ store_location_for(:user, after_sign_up_path)
+ end
+
+ def after_sign_up_path
+ users_sign_up_welcome_path
end
# overridden in EE