0
epieters created
- ABP Framework version: v5.3.4
- UI type: MVC
- DB provider: EF Core
- Tiered (MVC) or Identity Server Separated (Angular): no
- Exception message and stack trace:
- Steps to reproduce the issue:"
I'm trying to remove OrganizationalUnits. I've used the administration.TryRemoveMenuItem(IdentityMenuNames.OrganizationUnits), but the menu still appears.
Markdown supported.
Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)
2 Answer(s)
-
0
First of all, we need to select Identity from the administration items.
Can you try the code below?
administration.Items.Single(x => x.Name == IdentityMenuNames.GroupName).TryRemoveMenuItem(IdentityMenuNames.OrganizationUnits);Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)
