2016-08-19 09:03:00 +00:00
|
|
|
class Users::OmniauthCallbacksController < Devise::OmniauthCallbacksController
|
2016-08-19 15:22:36 +00:00
|
|
|
layout "login_pages"
|
2016-08-19 09:03:00 +00:00
|
|
|
# You should configure your model like this:
|
|
|
|
# devise :omniauthable, omniauth_providers: [:twitter]
|
|
|
|
|
|
|
|
# You should also create an action method in this controller like this:
|
|
|
|
# def twitter
|
|
|
|
# end
|
|
|
|
|
|
|
|
# More info at:
|
|
|
|
# https://github.com/plataformatec/devise#omniauth
|
|
|
|
|
|
|
|
# GET|POST /resource/auth/twitter
|
|
|
|
# def passthru
|
|
|
|
# super
|
|
|
|
# end
|
|
|
|
|
|
|
|
# GET|POST /users/auth/twitter/callback
|
|
|
|
# def failure
|
|
|
|
# super
|
|
|
|
# end
|
|
|
|
|
|
|
|
# protected
|
|
|
|
|
|
|
|
# The path used when OmniAuth fails
|
|
|
|
# def after_omniauth_failure_path_for(scope)
|
|
|
|
# super(scope)
|
|
|
|
# end
|
|
|
|
end
|