Sha256: 93bd5ac150b2ffc76b2a3de4eff8672508081752f09c2701f96266c3fa0868d2
Contents?: true
Size: 891 Bytes
Versions: 9
Compression:
Stored size: 891 Bytes
Contents
# frozen_string_literal: true module DeviseSecurity::Patches module UnlocksControllerSecurityQuestion extend ActiveSupport::Concern included do define_method :create do # only find via email, not login resource = resource_class.find_or_initialize_with_error_by(:email, params[resource_name][:email], :not_found) if valid_captcha_or_security_question?(resource, params) self.resource = resource_class.send_unlock_instructions(params[resource_name]) if successfully_sent?(resource) respond_with({}, location: new_session_path(resource_name)) else respond_with(resource) end else flash[:alert] = t('devise.invalid_security_question') if is_navigational_format? respond_with({}, location: new_unlock_path(resource_name)) end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems