class Authorio::Configuration

Attributes

authorization_endpoint[RW]
local_session_lifetime[RW]
mount_point[RW]
multiuser[RW]
token_endpoint[RW]
token_expiration[RW]

Public Class Methods

new() click to toggle source
# File lib/authorio/configuration.rb, line 8
def initialize
  @authorization_endpoint = 'auth'
  @token_endpoint = 'token'
  @mount_point = 'authorio'
  @token_expiration = 4.weeks
  @local_session_lifetime = nil
  @multiuser = false
end