Class: ActionPasskey::Configuration
- Inherits:
-
Object
- Object
- ActionPasskey::Configuration
- Defined in:
- lib/action_passkey.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
-
#origins ⇒ Object
Returns the value of attribute origins.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
22 23 24 25 |
# File 'lib/action_passkey.rb', line 22 def initialize @origins = [] @name = "My Application" end |
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
20 21 22 |
# File 'lib/action_passkey.rb', line 20 def name @name end |
#origins ⇒ Object
Returns the value of attribute origins.
20 21 22 |
# File 'lib/action_passkey.rb', line 20 def origins @origins end |