Files
Cleanuparr/code/frontend/src/app/shared/models/oidc-config.model.ts
2026-03-12 22:12:20 +02:00

12 lines
237 B
TypeScript

export interface OidcConfig {
enabled: boolean;
issuerUrl: string;
clientId: string;
clientSecret: string;
scopes: string;
authorizedSubject: string;
providerName: string;
redirectUrl: string;
exclusiveMode: boolean;
}