Sha256: 7b62c9c00e35dbd483238388f1cb42230be5dfd1193176b4c0dc71692c546449
Contents?: true
Size: 581 Bytes
Versions: 3
Compression:
Stored size: 581 Bytes
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_infinum_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