mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-16 00:06:40 +01:00
77a365e667
## About the changes `frontend> yarn gen:api` after recent updates
24 lines
831 B
TypeScript
24 lines
831 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* Configuration for using Google Authentication
|
|
*/
|
|
export interface GoogleSettingsSchema {
|
|
/** Is google OIDC enabled */
|
|
enabled?: boolean;
|
|
/** The google client id, used to authenticate against google */
|
|
clientId: string;
|
|
/** The client secret used to authenticate the OAuth session used to log the user in */
|
|
clientSecret: string;
|
|
/** Name of the host allowed to access the Google authentication flow */
|
|
unleashHostname: string;
|
|
/** Should Unleash create users based on the emails coming back in the authentication reply from Google */
|
|
autoCreate?: boolean;
|
|
/** A comma separated list of email domains that Unleash will auto create user accounts for. */
|
|
emailDomains?: string;
|
|
}
|