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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
14 additions and
0 deletions
-
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. |
|
|
|
|