Sha256: cbd9f193445927da16ee9ca577562094e53f21daf9d576ff698a893f49fbde61
Contents?: true
Size: 884 Bytes
Versions: 6
Compression:
Stored size: 884 Bytes
Contents
module GDS module SSO module Config # Name of the User class mattr_accessor :user_model @@user_model = "User" # OAuth ID mattr_accessor :oauth_id # OAuth Secret mattr_accessor :oauth_secret # Location of the OAuth server mattr_accessor :oauth_root_url @@oauth_root_url = "http://localhost:3001" # Basic Auth Credentials (for api access when request accept # header is application/json) mattr_accessor :basic_auth_user mattr_accessor :basic_auth_password mattr_accessor :basic_auth_realm # default_scope, usually the app, e.g. Publisher mattr_accessor :default_scope @@basic_auth_realm = "API Access" mattr_accessor :auth_valid_for @@auth_valid_for = 20 * 3600 def self.user_klass user_model.to_s.constantize end end end end
Version data entries
6 entries across 6 versions & 1 rubygems