mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-24 09:03:38 -04:00
12 lines
237 B
TypeScript
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;
|
|
}
|