projects/lib/src/oauth-module.config.ts
Properties |
allowedUrls |
allowedUrls:
|
Type : Array<string>
|
Defined in projects/lib/src/oauth-module.config.ts:11
|
Urls for which calls should be intercepted. If there is an ResourceServerErrorHandler registered, it is used for them. If sendAccessToken is set to true, the access_token is send to them too. |
sendAccessToken |
sendAccessToken:
|
Type : boolean
|
Defined in projects/lib/src/oauth-module.config.ts:12
|
export abstract class OAuthModuleConfig {
resourceServer: OAuthResourceServerConfig;
}
export abstract class OAuthResourceServerConfig {
/**
* Urls for which calls should be intercepted.
* If there is an ResourceServerErrorHandler registered, it is used for them.
* If sendAccessToken is set to true, the access_token is send to them too.
*/
allowedUrls: Array<string>;
sendAccessToken: boolean;
}