0
jackmcelhinney created
- ABP Framework version: v5.0.1
- UI type: Angular
- DB provider: EF Core
- Identity Server Separated: no
Hello! A while back we disabled the Organization Unit functionality in part by disabling the permissions:
context.GetPermissionOrNull(IdentityPermissions.OrganizationUnits.Default).IsEnabled = false;
context.GetPermissionOrNull(IdentityPermissions.OrganizationUnits.ManageOU).IsEnabled = false;
context.GetPermissionOrNull(IdentityPermissions.OrganizationUnits.ManageRoles).IsEnabled = false;
context.GetPermissionOrNull(IdentityPermissions.OrganizationUnits.ManageUsers).IsEnabled = false;
After upgrading from 4.4.4
to 5.0.1
, the new filters on the user table throw a Volo.Abp.Authorization.AbpAuthorizationException
when trying to get the organization units from Volo.Abp.Identity.OrganizationUnitController.GetListAsync
. Is there a way to disable these new filters on the user table or another workaround to solve this problem within version 5.0.1
?
Thanks!
1 Answer(s)
-
0
hi
Is there a way to disable these new filters on the user table or another workaround to solve this problem within version 5.0.1?
Can you share the details error info?
disable these new filters
What are the
new filters
? Can you share a screenshot?