Skip to content

Commit 693397b

Browse files
authored
Update abp-8-3.md
1 parent ee90e6d commit 693397b

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

docs/en/release-info/migration-guides/abp-8-3.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,24 @@ In this version, we have started updating entities' `EntityVersion`, `Modificati
5757

5858
We wish to formally inform you that ABP version 8.3 has been upgraded to incorporate Angular version 18. Consequently, we recommend migrating your application to [Angular v18](https://angular.dev/update-guide) to ensure compatibility.
5959

60+
#### Tenant impersonation & User impersonation
61+
62+
Add the `impersonation: { userImpersonation: true, tenantImpersonation: true}` object to the `oAuthConfig` of the environment if it does not exit.
63+
64+
```
65+
export const environment = {
66+
//Other props..
67+
oAuthConfig: {
68+
//Other props..
69+
impersonation: {
70+
userImpersonation: true,
71+
tenantImpersonation: true,
72+
},
73+
},
74+
```
75+
76+
See https://abp.io/docs/latest/modules/account/impersonation#angular
77+
6078
## PRO
6179

6280
> Please check the **Open-Source (Framework)** section before reading this section. The listed topics might affect your application and you might need to take care of them.

0 commit comments

Comments
 (0)