mirror of
https://github.com/lukevella/rallly.git
synced 2025-07-23 19:27:25 +02:00
✨ Add support for OpenID Connect (#939)
This commit is contained in:
parent
9ceb27f6e3
commit
7c03059bc0
18 changed files with 562 additions and 305 deletions
20
apps/web/declarations/environment.d.ts
vendored
20
apps/web/declarations/environment.d.ts
vendored
|
@ -64,6 +64,26 @@ declare global {
|
|||
* Determines what email provider to use. "smtp" or "ses"
|
||||
*/
|
||||
EMAIL_PROVIDER?: "smtp" | "ses";
|
||||
/**
|
||||
* Set to "true" to enable OIDC authentication
|
||||
*/
|
||||
OIDC_ENABLED?: string;
|
||||
/**
|
||||
* Name of the oidc provider
|
||||
*/
|
||||
OIDC_NAME?: string;
|
||||
/**
|
||||
* URL of the oidc provider .well-known/openid-configuration endpoint
|
||||
*/
|
||||
OIDC_DISCOVERY_URL?: string;
|
||||
/**
|
||||
* Client ID of the oidc provider
|
||||
*/
|
||||
OIDC_CLIENT_ID?: string;
|
||||
/**
|
||||
* Client secret of the oidc provider
|
||||
*/
|
||||
OIDC_CLIENT_SECRET?: string;
|
||||
/**
|
||||
* AWS access key ID
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue