mirror of
https://github.com/Mastermindzh/react-starter-kit.git
synced 2025-04-19 05:23:50 +02:00
Added an example of an authentication protected page (tenders) Added an example with the built in proxy (to combat CORS) (tendersguru)
12 lines
197 B
TypeScript
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;
|
|
}
|