Created
November 3, 2018 11:02
-
-
Save drKreso/9369d8388fb6f9b504dd2d9db21ba6e5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # app/controllers/users/omniauth_callbacks_controller.rb | |
| class Users::OmniauthCallbacksController < Devise::OmniauthCallbacksController | |
| def facebook | |
| # You need to implement the method below in your model (e.g. app/models/user.rb) | |
| @user = User.from_omniauth(request.env["omniauth.auth"]) | |
| if @user.persisted? | |
| sign_in_and_redirect @user, :event => :authentication #this will throw if @user is not activated | |
| set_flash_message(:notice, :success, :kind => "Facebook") if is_navigational_format? | |
| else | |
| session["devise.facebook_data"] = request.env["omniauth.auth"] | |
| redirect_to new_user_registration_url | |
| end | |
| end | |
| def failure | |
| redirect_to root_path | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment