diff options
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 | ||