Browse Source

Merge pull request #21053 from abpframework/auto-merge/rel-8-3/3071

Merge branch prerel-9.0 with rel-8.3
pull/21054/head
maliming 2 years ago
committed by GitHub
parent
commit
574b91a4cd
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 14
      docs/en/modules/account/impersonation.md

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

@ -258,6 +258,20 @@ if (!consoleAndAngularClientId.IsNullOrWhiteSpace())
}
```
Add `impersonation: { userImpersonation: true, tenantImpersonation: true}` object to `oAuthConfig` of `environment` if not exits.
```js
export const environment = {
//Other props..
oAuthConfig: {
//Other props..
impersonation: {
userImpersonation: true,
tenantImpersonation: true,
},
},
```
### Blazor WASM
It is currently not supported.

Loading…
Cancel
Save