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/confirmations_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/confirmations_controller.rb')
| -rw-r--r-- | app/controllers/users/confirmations_controller.rb | 28 |
1 files changed, 28 insertions, 0 deletions
| diff --git a/app/controllers/users/confirmations_controller.rb b/app/controllers/users/confirmations_controller.rb new file mode 100644 index 0000000..1126e23 --- /dev/null +++ b/app/controllers/users/confirmations_controller.rb | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | class Users::ConfirmationsController < Devise::ConfirmationsController | ||
| 2 | # GET /resource/confirmation/new | ||
| 3 | # def new | ||
| 4 | # super | ||
| 5 | # end | ||
| 6 | |||
| 7 | # POST /resource/confirmation | ||
| 8 | # def create | ||
| 9 | # super | ||
| 10 | # end | ||
| 11 | |||
| 12 | # GET /resource/confirmation?confirmation_token=abcdef | ||
| 13 | # def show | ||
| 14 | # super | ||
| 15 | # end | ||
| 16 | |||
| 17 | # protected | ||
| 18 | |||
| 19 | # The path used after resending confirmation instructions. | ||
| 20 | # def after_resending_confirmation_instructions_path_for(resource_name) | ||
| 21 | # super(resource_name) | ||
| 22 | # end | ||
| 23 | |||
| 24 | # The path used after confirmation. | ||
| 25 | # def after_confirmation_path_for(resource_name, resource) | ||
| 26 | # super(resource_name, resource) | ||
| 27 | # end | ||
| 28 | end | ||
