Mastermindzh b9d3025163 Added react-oidc (use demo/demo)
Added an example of an authentication protected page (tenders)
Added an example with the built in proxy (to combat CORS) (tendersguru)
2022-07-26 11:15:36 +02:00

12 lines
197 B
TypeScript

import { OIDCConfig } from "../sso/models/OIDCConfig";
export interface RunTimeConfig {
version: number;
name: string;
/**
* Settings for the OIDC connection
*/
oidc: OIDCConfig;
}