Class: Devise::CheckgaController

Inherits:
SessionsController
  • Object
show all
Includes:
Devise::Controllers::Helpers
Defined in:
app/controllers/devise/checkga_controller.rb

Instance Method Summary collapse

Instance Method Details

#showObject



5
6
7
8
9
10
11
12
# File 'app/controllers/devise/checkga_controller.rb', line 5

def show
  @tmpid = params[:id]
  if @tmpid.nil?
    redirect_to :root
  else
    render :show
  end
end

#updateObject



14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'app/controllers/devise/checkga_controller.rb', line 14

def update
  resource = resource_class.find_by_gauth_tmp(params[resource_name]['tmpid'])

  if not resource.nil?

    if resource.validate_token(params[resource_name]['token'].to_i)
      set_flash_message(:notice, :signed_in) if is_navigational_format?
      (resource_name,resource)
      respond_with resource, :location => (resource)
    else
      redirect_to :root
    end

  else
    redirect_to :root
  end
end