diff --git a/docs/en/modules/account/impersonation.md b/docs/en/modules/account/impersonation.md index a086729054..ed008c6418 100644 --- a/docs/en/modules/account/impersonation.md +++ b/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.