1
0
Fork 0
mirror of https://github.com/heartcombo/devise.git synced 2022-11-09 12:18:31 -05:00
heartcombo--devise/app/controllers/passwords_controller.rb

41 lines
978 B
Ruby
Raw Normal View History

class PasswordsController < ApplicationController
include Devise::Controllers::Helpers
before_filter :require_no_authentication
2009-10-17 11:10:15 -04:00
# GET /resource/password/new
def new
2009-10-27 19:31:12 -04:00
build_resource
end
2009-10-17 11:10:15 -04:00
# POST /resource/password
def create
self.resource = resource_class.send_reset_password_instructions(params[resource_name])
2009-10-12 07:37:28 -04:00
2009-10-10 08:32:51 -04:00
if resource.errors.empty?
2009-10-12 07:37:28 -04:00
set_flash_message :success, :send_instructions
2009-10-11 22:24:57 -04:00
redirect_to new_session_path(resource_name)
else
render :new
end
end
2009-11-10 15:55:13 -05:00
# GET /resource/password/edit?reset_password_token=abcdef
def edit
self.resource = resource_class.new
resource.reset_password_token = params[:reset_password_token]
end
2009-10-17 11:10:15 -04:00
# PUT /resource/password
def update
self.resource = resource_class.reset_password!(params[resource_name])
2009-10-17 11:10:15 -04:00
2009-10-10 08:32:51 -04:00
if resource.errors.empty?
2009-10-12 07:37:28 -04:00
set_flash_message :success, :updated
sign_in_and_redirect(resource_name, resource)
else
render :edit
end
end
end