Browse Source

update angular section of impersonation document

pull/21051/head
Masum ULU 1 year ago
committed by GitHub
parent
commit
326a8d9b4a
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 16
      docs/en/modules/account/impersonation.md

16
docs/en/modules/account/impersonation.md

@ -258,21 +258,13 @@ if (!consoleAndAngularClientId.IsNullOrWhiteSpace())
}
```
Add `impersonation: { userImpersonation: true, tenantImpersonation: true}` object to `oAuthConfig` of `environment`.
Add `impersonation: { userImpersonation: true, tenantImpersonation: true}` object to `oAuthConfig` of `environment` if not exits.
```cs
```js
export const environment = {
production: false,
application: {
baseUrl,
name: 'MyProjectName',
},
//Other props..
oAuthConfig: {
issuer: 'https://localhost:44305/',
clientId: 'MyProjectName_App',
scope: 'offline_access MyProjectName',
redirectUri: baseUrl,
// responseType: 'code',
//Other props..
impersonation: {
userImpersonation: true,
tenantImpersonation: true,

Loading…
Cancel
Save