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