about summary refs log tree commit diff stats
path: root/app/controllers/users/passwords_controller.rb
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2017-06-25 12:30:31 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2017-06-25 12:30:31 -0400
commit7e2e42379cb40a500eb8a236c05788eb3e84d141 (patch)
tree784dfe04f81b034889b96b5c251923da7e6f3a1e /app/controllers/users/passwords_controller.rb
parent275218aeaf24d4f9d58589cf68ec6647f0a65050 (diff)
downloadthoughts-7e2e42379cb40a500eb8a236c05788eb3e84d141.tar.gz
thoughts-7e2e42379cb40a500eb8a236c05788eb3e84d141.tar.bz2
thoughts-7e2e42379cb40a500eb8a236c05788eb3e84d141.zip
Added logging in and logging out
Diffstat (limited to 'app/controllers/users/passwords_controller.rb')
-rw-r--r--app/controllers/users/passwords_controller.rb32
1 files changed, 32 insertions, 0 deletions
diff --git a/app/controllers/users/passwords_controller.rb b/app/controllers/users/passwords_controller.rb new file mode 100644 index 0000000..53cc34e --- /dev/null +++ b/app/controllers/users/passwords_controller.rb
@@ -0,0 +1,32 @@
1class Users::PasswordsController < Devise::PasswordsController
2 # GET /resource/password/new
3 # def new
4 # super
5 # end
6
7 # POST /resource/password
8 # def create
9 # super
10 # end
11
12 # GET /resource/password/edit?reset_password_token=abcdef
13 # def edit
14 # super
15 # end
16
17 # PUT /resource/password
18 # def update
19 # super
20 # end
21
22 # protected
23
24 # def after_resetting_password_path_for(resource)
25 # super(resource)
26 # end
27
28 # The path used after sending reset password instructions
29 # def after_sending_reset_password_instructions_path_for(resource_name)
30 # super(resource_name)
31 # end
32end