Browse Source

Merge pull request #21051 from abpframework/maliming-patch-2

Update impersonation.md
pull/21053/head
Masum ULU 1 year ago
committed by GitHub
parent
commit
3540ba5f08
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