Sha256: 8824d1bc63bea7d8c8dacf3c97227f3e28f22222d10274f525d99ae6c5e771a2

Contents?: true

Size: 789 Bytes

Versions: 2

Compression:

Stored size: 789 Bytes

Contents

# frozen_string_literal: true

module MiniBlog
  module Users
    class ConfirmationsController < Devise::ConfirmationsController
      # GET /resource/confirmation/new
      # def new
      #   super
      # end

      # POST /resource/confirmation
      # def create
      #   super
      # end

      # GET /resource/confirmation?confirmation_token=abcdef
      # def show
      #   super
      # end

      # protected

      # The path used after resending confirmation instructions.
      # def after_resending_confirmation_instructions_path_for(resource_name)
      #   super(resource_name)
      # end

      # The path used after confirmation.
      # def after_confirmation_path_for(resource_name, resource)
      #   super(resource_name, resource)
      # end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mini_blog-0.1.1 app/controllers/mini_blog/users/confirmations_controller.rb
mini_blog-0.1.0 app/controllers/mini_blog/users/confirmations_controller.rb