diff options
Diffstat (limited to 'app/controllers/users/passwords_controller.rb')
-rw-r--r-- | app/controllers/users/passwords_controller.rb | 32 |
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 @@ | |||
1 | class 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 | ||
32 | end | ||