Sha256: d72129460f74cbf071712bfdec54af820b29b024bcb6cb1aa037151d44bea547
Contents?: true
Size: 1.41 KB
Versions: 1
Compression:
Stored size: 1.41 KB
Contents
module ActionAuth class Configuration attr_accessor :allow_user_deletion attr_accessor :default_from_email attr_accessor :magic_link_enabled attr_accessor :passkey_only attr_accessor :pwned_enabled attr_accessor :sms_auth_enabled attr_accessor :sms_send_class attr_accessor :verify_email_on_sign_in attr_accessor :webauthn_enabled attr_accessor :webauthn_origin attr_accessor :webauthn_rp_name def initialize @allow_user_deletion = true @default_from_email = "from@example.com" @magic_link_enabled = true @passkey_only = true @pwned_enabled = defined?(Pwned) @sms_auth_enabled = false @sms_send_class = nil @verify_email_on_sign_in = true @webauthn_enabled = defined?(WebAuthn) @webauthn_origin = "http://localhost:3000" @webauthn_rp_name = Rails.application.class.to_s.deconstantize end def allow_user_deletion? @allow_user_deletion == true end def magic_link_enabled? @magic_link_enabled == true end def sms_auth_enabled? @sms_auth_enabled == true end def passkey_only? webauthn_enabled? && @passkey_only == true end def webauthn_enabled? @webauthn_enabled.respond_to?(:call) ? @webauthn_enabled.call : @webauthn_enabled end def pwned_enabled? @pwned_enabled.respond_to?(:call) ? @pwned_enabled.call : @pwned_enabled end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
action_auth-1.7.0 | lib/action_auth/configuration.rb |