Browse Source

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

Update abp-8-3.md
pull/21229/head
Masum ULU 1 year ago
committed by GitHub
parent
commit
5cd92ac67f
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 18
      docs/en/release-info/migration-guides/abp-8-3.md

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

@ -53,6 +53,24 @@ See the PR for more info: https://github.com/abpframework/abp/pull/19340
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.
#### Tenant impersonation & User impersonation
Add the `impersonation: { userImpersonation: true, tenantImpersonation: true}` object to the `oAuthConfig` of the environment if it does not exit.
```
export const environment = {
//Other props..
oAuthConfig: {
//Other props..
impersonation: {
userImpersonation: true,
tenantImpersonation: true,
},
},
```
See https://abp.io/docs/latest/modules/account/impersonation#angular
## PRO
> 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.

Loading…
Cancel
Save