Sha256: d7072225bf399bff25e12559978bebbbd2f5bf4dc8646079876ccaabfd6ce9f6
Contents?: true
Size: 837 Bytes
Versions: 5
Compression:
Stored size: 837 Bytes
Contents
# frozen_string_literal: true module Elabs module Auth class UnlocksController < Devise::UnlocksController include Elabs::Concerns::ElabsController include Elabs::Concerns::Reportable include Elabs::Concerns::Localizable # 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
5 entries across 5 versions & 1 rubygems