Sha256: fcd557f397bb13cb6b7d1daf5d320be44685c8fe3130164b67fc18ee83832948

Contents?: true

Size: 708 Bytes

Versions: 2

Compression:

Stored size: 708 Bytes

Contents

# frozen_string_literal: true

module MiniBlog
  module Users
    class UnlocksController < Devise::UnlocksController
      # GET /resource/unlock/new
      # def new
      #   super
      # end

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

      # GET /resource/unlock?unlock_token=abcdef
      # def show
      #   super
      # end

      # protected

      # The path used after sending unlock password instructions
      # def after_sending_unlock_instructions_path_for(resource)
      #   super(resource)
      # end

      # The path used after unlocking the resource
      # def after_unlock_path_for(resource)
      #   super(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/unlocks_controller.rb
mini_blog-0.1.0 app/controllers/mini_blog/users/unlocks_controller.rb