heartcombo--devise/lib/generators/templates/controllers/confirmations_controller.rb

31 lines
676 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class <%= @scope_prefix %>ConfirmationsController < Devise::ConfirmationsController
# GET /resource/confirmation/new
2014-09-03 03:34:13 +00:00
# def new
# super
# end
# POST /resource/confirmation
2014-09-03 03:34:13 +00:00
# def create
# super
# end
# GET /resource/confirmation?confirmation_token=abcdef
2014-09-03 03:34:13 +00:00
# def show
# super
# end
# protected
2014-09-10 01:31:48 +00:00
# The path used after resending confirmation instructions.
# def after_resending_confirmation_instructions_path_for(resource_name)
# super(resource_name)
# end
2014-09-10 01:31:48 +00:00
# The path used after confirmation.
# def after_confirmation_path_for(resource_name, resource)
# super(resource_name, resource)
# end
end