Interface PlaceAuthority

interface PlaceAuthority {
    config: HashMap;
    description: string;
    domain: string;
    email_domains?: string[];
    id: string;
    login_url: string;
    logout_url: string;
    metrics?: string;
    name: string;
    production: boolean;
    sentry_dsn?: string;
    session: boolean;
    version?: string;
}

Properties

config: HashMap

Configuration metadata for the authority

description: string

Description of the authority site

domain: string

Domain of the authority

email_domains?: string[]

List of email domains associated with the authority

id: string

Place ID for the Authority

login_url: string

URL for user to login for authentication

logout_url: string

URL for user to clear authentication details

metrics?: string

URL to the metrics interface for Place

name: string

Authority name

production: boolean

Whether the engine instance is a production build

sentry_dsn?: string

DSN for Sentry integration

session: boolean

Whether the user has an authentication session

version?: string

Version of the PlaceOS API