Files
noahspan-modules/libs/modules/src/auth/auth.interface.ts
noahspannbauer ea108de9cd 12 change auth to OIDC (#13)
* switching auth strategy to oidc

* switching auth strategy to oidc
2025-08-26 21:11:16 -05:00

11 lines
212 B
TypeScript

export interface AuthModuleOptions {
authorizationUrl: string;
issuer: string;
callbackUrl: string;
clientId: string;
clientSecret: string;
scope: string;
tokenUrl: string;
userInfoUrl: string;
}