Class: Auth0CurrentUser::Configuration
- Inherits:
-
Object
- Object
- Auth0CurrentUser::Configuration
- Defined in:
- lib/auth0_current_user/configuration.rb
Instance Attribute Summary collapse
-
#auth0_audience ⇒ Object
Returns the value of attribute auth0_audience.
-
#auth0_domain ⇒ Object
Returns the value of attribute auth0_domain.
-
#authenticated_klass ⇒ Object
Returns the value of attribute authenticated_klass.
-
#client_id ⇒ Object
Returns the value of attribute client_id.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
5 6 7 8 9 10 |
# File 'lib/auth0_current_user/configuration.rb', line 5 def initialize @auth0_domain = nil @auth0_audience = nil @authenticated_klass = :user @client_id = nil end |
Instance Attribute Details
#auth0_audience ⇒ Object
Returns the value of attribute auth0_audience.
3 4 5 |
# File 'lib/auth0_current_user/configuration.rb', line 3 def auth0_audience @auth0_audience end |
#auth0_domain ⇒ Object
Returns the value of attribute auth0_domain.
3 4 5 |
# File 'lib/auth0_current_user/configuration.rb', line 3 def auth0_domain @auth0_domain end |
#authenticated_klass ⇒ Object
Returns the value of attribute authenticated_klass.
3 4 5 |
# File 'lib/auth0_current_user/configuration.rb', line 3 def authenticated_klass @authenticated_klass end |
#client_id ⇒ Object
Returns the value of attribute client_id.
3 4 5 |
# File 'lib/auth0_current_user/configuration.rb', line 3 def client_id @client_id end |