Sha256: 763496db7367df9668e2eb7e45f1d9f249de9098a58f89b4e24bbae777babff0

Contents?: true

Size: 1.31 KB

Versions: 30

Compression:

Stored size: 1.31 KB

Contents

module MnoEnterprise::Concerns::Controllers::Auth::UnlocksController
  extend ActiveSupport::Concern
  
  #==================================================================
  # Included methods
  #==================================================================
  # 'included do' causes the included code to be evaluated in the
  # context where it is included rather than being executed in the module's context
  included do
  end
  
  #==================================================================
  # Class methods
  #==================================================================
  module ClassMethods
    # def some_class_method
    #   'some text'
    # end
  end
  
  #==================================================================
  # Instance methods
  #==================================================================
  # 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

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
mno-enterprise-core-3.4.0 lib/mno_enterprise/concerns/controllers/auth/unlocks_controller.rb
mno-enterprise-core-3.3.3 lib/mno_enterprise/concerns/controllers/auth/unlocks_controller.rb
mno-enterprise-core-3.3.2 lib/mno_enterprise/concerns/controllers/auth/unlocks_controller.rb
mno-enterprise-core-3.2.1 lib/mno_enterprise/concerns/controllers/auth/unlocks_controller.rb
mno-enterprise-core-3.3.1 lib/mno_enterprise/concerns/controllers/auth/unlocks_controller.rb
mno-enterprise-core-3.3.0 lib/mno_enterprise/concerns/controllers/auth/unlocks_controller.rb
mno-enterprise-core-3.2.0 lib/mno_enterprise/concerns/controllers/auth/unlocks_controller.rb
mno-enterprise-core-3.1.4 lib/mno_enterprise/concerns/controllers/auth/unlocks_controller.rb
mno-enterprise-core-3.0.7 lib/mno_enterprise/concerns/controllers/auth/unlocks_controller.rb
mno-enterprise-core-2.0.9 lib/mno_enterprise/concerns/controllers/auth/unlocks_controller.rb
mno-enterprise-core-3.1.3 lib/mno_enterprise/concerns/controllers/auth/unlocks_controller.rb
mno-enterprise-core-3.0.6 lib/mno_enterprise/concerns/controllers/auth/unlocks_controller.rb
mno-enterprise-core-2.0.8 lib/mno_enterprise/concerns/controllers/auth/unlocks_controller.rb
mno-enterprise-core-3.1.2 lib/mno_enterprise/concerns/controllers/auth/unlocks_controller.rb
mno-enterprise-core-3.0.5 lib/mno_enterprise/concerns/controllers/auth/unlocks_controller.rb
mno-enterprise-core-2.0.7 lib/mno_enterprise/concerns/controllers/auth/unlocks_controller.rb
mno-enterprise-core-2.0.6 lib/mno_enterprise/concerns/controllers/auth/unlocks_controller.rb
mno-enterprise-core-2.0.5 lib/mno_enterprise/concerns/controllers/auth/unlocks_controller.rb
mno-enterprise-core-3.1.1 lib/mno_enterprise/concerns/controllers/auth/unlocks_controller.rb
mno-enterprise-core-3.0.4 lib/mno_enterprise/concerns/controllers/auth/unlocks_controller.rb