Add configurable OAuth 2.0 scopes
- Add oauth2 config for optional scopes - Document oauth2 config keys - Add OAuth2 to demo app list of identity providers
This commit is contained in:
Vendored
+8
-1
@@ -58,7 +58,14 @@ export interface Config {
|
||||
development: { [key: string]: string };
|
||||
};
|
||||
oauth2?: {
|
||||
development: { [key: string]: string };
|
||||
development: {
|
||||
clientId: string;
|
||||
clientSecret: string;
|
||||
callbackUrl: string;
|
||||
authorizationUrl: string;
|
||||
tokenUrl: string;
|
||||
scope?: string;
|
||||
};
|
||||
};
|
||||
oidc?: {
|
||||
development: { [key: string]: string };
|
||||
|
||||
Reference in New Issue
Block a user