In ASP.NET Core MVC I would like to hide links in my navigation bar that the user is not authorized to access. Currently the MvcSiteMapProvider that I have used in previous projects does not support ASP.NET Core MVC.
A similar question was asked a couple of years ago and whilst the suggested answer would work it would require repeating the Authorization filter set on a controller/action to ensure links are hidden.
How can this be done and are there any current examples of security trimming in ASP.NET Core MVC?
I have created custom tag helper to handle this.
You can apply this to any html element. If you want to apply it to only specific html element ( lets say
<li>
) then change theHtmlTargetElement
tothen in view you can do