use more future proof config for static clients (#11175)

This commit is contained in:
Kerry
2023-07-04 23:10:03 +00:00
committed by GitHub
parent ce332d0f8b
commit 90e65e8490
5 changed files with 24 additions and 13 deletions
+6 -1
View File
@@ -201,7 +201,12 @@ export interface IConfigOptions {
* The issuer URL must have a trailing `/`.
* OPTIONAL
*/
oidc_static_client_ids?: Record<string, string>;
oidc_static_clients?: Record<
string,
{
client_id: string;
}
>;
}
export interface ISsoRedirectOptions {