tab/app/controllers/callbacks_controller.rb
2018-06-20 18:02:33 +02:00

10 lines
269 B
Ruby

class CallbacksController < Devise::OmniauthCallbacksController
def zeuswpi
@user = User.from_omniauth(request.env["omniauth.auth"])
sign_in_and_redirect @user, event: :authentication
end
def after_omniauth_failure_path_for(scope)
root_path
end
end