Class: Ask::Auth::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/ask/auth.rb

Overview

Holds configuration for the resolution chain.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(providers: []) ⇒ Configuration

Returns a new instance of Configuration.



94
95
96
# File 'lib/ask/auth.rb', line 94

def initialize(providers: [])
  @providers = providers
end

Instance Attribute Details

#providersObject

Returns the value of attribute providers.



92
93
94
# File 'lib/ask/auth.rb', line 92

def providers
  @providers
end