diff options
| author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-06-25 12:30:31 -0400 | 
|---|---|---|
| committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-06-25 12:30:31 -0400 | 
| commit | 7e2e42379cb40a500eb8a236c05788eb3e84d141 (patch) | |
| tree | 784dfe04f81b034889b96b5c251923da7e6f3a1e /app/controllers/users/unlocks_controller.rb | |
| parent | 275218aeaf24d4f9d58589cf68ec6647f0a65050 (diff) | |
| download | thoughts-7e2e42379cb40a500eb8a236c05788eb3e84d141.tar.gz thoughts-7e2e42379cb40a500eb8a236c05788eb3e84d141.tar.bz2 thoughts-7e2e42379cb40a500eb8a236c05788eb3e84d141.zip | |
Added logging in and logging out
Diffstat (limited to 'app/controllers/users/unlocks_controller.rb')
| -rw-r--r-- | app/controllers/users/unlocks_controller.rb | 28 | 
1 files changed, 28 insertions, 0 deletions
| diff --git a/app/controllers/users/unlocks_controller.rb b/app/controllers/users/unlocks_controller.rb new file mode 100644 index 0000000..8b9ef86 --- /dev/null +++ b/app/controllers/users/unlocks_controller.rb | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | class Users::UnlocksController < Devise::UnlocksController | ||
| 2 | # GET /resource/unlock/new | ||
| 3 | # def new | ||
| 4 | # super | ||
| 5 | # end | ||
| 6 | |||
| 7 | # POST /resource/unlock | ||
| 8 | # def create | ||
| 9 | # super | ||
| 10 | # end | ||
| 11 | |||
| 12 | # GET /resource/unlock?unlock_token=abcdef | ||
| 13 | # def show | ||
| 14 | # super | ||
| 15 | # end | ||
| 16 | |||
| 17 | # protected | ||
| 18 | |||
| 19 | # The path used after sending unlock password instructions | ||
| 20 | # def after_sending_unlock_instructions_path_for(resource) | ||
| 21 | # super(resource) | ||
| 22 | # end | ||
| 23 | |||
| 24 | # The path used after unlocking the resource | ||
| 25 | # def after_unlock_path_for(resource) | ||
| 26 | # super(resource) | ||
| 27 | # end | ||
| 28 | end | ||
