12 change auth to OIDC (#13)

* switching auth strategy to oidc

* switching auth strategy to oidc
This commit was merged in pull request #13.
This commit is contained in:
2025-08-26 21:11:16 -05:00
committed by GitHub
parent 7f86bb383e
commit ea108de9cd
7 changed files with 117 additions and 369 deletions

View File

@@ -1,5 +1,10 @@
export interface AuthModuleOptions {
tenantId: string;
authorizationUrl: string;
issuer: string;
callbackUrl: string;
clientId: string;
clientSecret: string;
scope: string;
tokenUrl: string;
userInfoUrl: string;
}