mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
Change method name
This commit is contained in:
parent
49873f4fea
commit
ec3eed5d2a
1 changed files with 2 additions and 2 deletions
|
@ -11,7 +11,7 @@ class Devise::UnlocksController < DeviseController
|
|||
self.resource = resource_class.send_unlock_instructions(params[resource_name])
|
||||
|
||||
if successfully_sent?(resource)
|
||||
respond_with({}, :location => after_sending_reset_unlock_instructions_path_for(resource))
|
||||
respond_with({}, :location => after_sending_unlock_instructions_path_for(resource))
|
||||
else
|
||||
respond_with(resource)
|
||||
end
|
||||
|
@ -32,7 +32,7 @@ class Devise::UnlocksController < DeviseController
|
|||
protected
|
||||
|
||||
# The path used after sending unlock password instructions
|
||||
def after_sending_reset_unlock_instructions_path_for(resource)
|
||||
def after_sending_unlock_instructions_path_for(resource)
|
||||
new_session_path(resource)
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue