Class: Devise::UnlocksController

Inherits:
ApplicationController
  • Object
show all
Includes:
Controllers::InternalHelpers
Defined in:
app/controllers/devise/unlocks_controller.rb

Constant Summary

Constants included from Controllers::SharedHelpers

Controllers::SharedHelpers::MIME_REFERENCES

Instance Method Summary collapse

Methods included from Controllers::InternalHelpers

#devise_controller?, #devise_mapping, #resource, #resource_class, #resource_name, #signed_in_resource

Instance Method Details

#createObject

POST /resource/unlock



12
13
14
15
16
17
18
19
20
21
# File 'app/controllers/devise/unlocks_controller.rb', line 12

def create
  self.resource = resource_class.send_unlock_instructions(params[resource_name])

  if resource.errors.empty?
    set_flash_message :notice, :send_instructions if is_navigational_format?
    respond_with resource, :location => new_session_path(resource_name)
  else
    respond_with_navigational(resource){ render_with_scope :new }
  end
end

#newObject

GET /resource/unlock/new



6
7
8
9
# File 'app/controllers/devise/unlocks_controller.rb', line 6

def new
  build_resource({})
  render_with_scope :new
end

#showObject

GET /resource/unlock?unlock_token=abcdef



24
25
26
27
28
29
30
31
32
33
34
# File 'app/controllers/devise/unlocks_controller.rb', line 24

def show
  self.resource = resource_class.unlock_access_by_token(params[:unlock_token])

  if resource.errors.empty?
    set_flash_message :notice, :unlocked if is_navigational_format?
    (resource_name, resource)
    respond_with_navigational(resource){ redirect_to redirect_location(resource_name, resource) }
  else
    respond_with_navigational(resource.errors, :status => :unprocessable_entity){ render_with_scope :new }
  end
end