Sha256: 32caf4a2939018e1b5dbf84a177bd79e2200a557ac9094002c346ee7e2ece192

Contents?: true

Size: 1.04 KB

Versions: 3

Compression:

Stored size: 1.04 KB

Contents

class Users::OmniauthCallbacksController < Devise::OmniauthCallbacksController
	def infinum
		# You need to implement the method below in your model (e.g. app/models/user.rb)
		@user = User.find_for_oauth(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 => "Infinum") if is_navigational_format?
		else
			session["devise.infinum_data"] = request.env["omniauth.auth"]
			redirect_to new_user_registration_url
		end
	end

	def facebook
		# You need to implement the method below in your model (e.g. app/models/user.rb)
		@user = User.find_for_oauth(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 => "infinum") if is_navigational_format?
		else
			session["devise.infinum_data"] = request.env["omniauth.auth"]
			redirect_to new_user_registration_url
		end
	end

	

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
omniauth-infinum-0.11.1 examples/omniauth_infinum_with_facebook/app/controllers/Users/omniauth_callbacks_controller.rb
omniauth-infinum-0.10.0 examples/omniauth_infinum_with_facebook/app/controllers/Users/omniauth_callbacks_controller.rb
omniauth-infinum-0.10.1 examples/omniauth_infinum_with_facebook/app/controllers/Users/omniauth_callbacks_controller.rb