| 1 | class ConfirmationsController < Devise::ConfirmationsController |
| 2 | layout 'new_confirmation', only: %i[new create] |
| 3 | layout 'edit_confirmation', only: %i[edit update] |
| 4 | |
| 5 | protected |
| 6 | |
| 7 | def after_confirmation_path_for(_resource_name, _resource) |
| 8 | login_path |
| 9 | end |
| 10 | |
| 11 | def after_resending_confirmation_instructions_path_for(_resource_name) |
| 12 | login_path |
| 13 | end |
| 14 | end |