diff options
author | Claire <claire.github-309c@sitedethib.com> | 2021-06-23 10:46:24 +0200 |
---|---|---|
committer | Claire <claire.github-309c@sitedethib.com> | 2021-06-23 10:46:24 +0200 |
commit | 37fd9670a586af057d12c3f789c0701ae074314f (patch) | |
tree | cc979a0bc830a9cc0c4e0d8beb90c487578dd522 /app/controllers/auth/omniauth_callbacks_controller.rb | |
parent | a434f370f38ac66e05000545e36d7c696f4962d0 (diff) | |
parent | 63b807cffcba0579efdf2f4ed4a2deb93af4850b (diff) |
Merge branch 'main' into glitch-soc/merge-upstream
Diffstat (limited to 'app/controllers/auth/omniauth_callbacks_controller.rb')
-rw-r--r-- | app/controllers/auth/omniauth_callbacks_controller.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/app/controllers/auth/omniauth_callbacks_controller.rb b/app/controllers/auth/omniauth_callbacks_controller.rb index 682c77016..7925e23cb 100644 --- a/app/controllers/auth/omniauth_callbacks_controller.rb +++ b/app/controllers/auth/omniauth_callbacks_controller.rb @@ -10,6 +10,15 @@ class Auth::OmniauthCallbacksController < Devise::OmniauthCallbacksController @user = User.find_for_oauth(request.env['omniauth.auth'], current_user) if @user.persisted? + LoginActivity.create( + user: user, + success: true, + authentication_method: :omniauth, + provider: provider, + ip: request.remote_ip, + user_agent: request.user_agent + ) + sign_in_and_redirect @user, event: :authentication set_flash_message(:notice, :success, kind: provider_id.capitalize) if is_navigational_format? else |