Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET MVC 5 Customise Bootstrap navbar based on User Role

I'm using the ASP.NET MVC 5 built in authentication methods. I would like to show and hide links (in the menu navbar) based on the role the user is in.

Has anyone acheived this?

Where would be a starting point?

like image 909
ASPCoder1450 Avatar asked Mar 10 '14 16:03

ASPCoder1450


2 Answers

Just wrap your links in:

@if (User.IsInRole("SomeRole"))
{
    ...
}
like image 126
Chris Pratt Avatar answered Nov 09 '22 01:11

Chris Pratt


You can use MvcSiteMap for this. It has a feature called SecurityTrimming which uses the [Authorize] attribute on your action methods to decide whether or not to display the menu item.

I know it's frowned upon to post a links in answers but I found this blog post very useful.

In addition to the role-based menu visibility, I added custom attributes to the MvcSiteMapNodes to determine visibility of links that were accessible to users but I didn't want shown in the menu (e.g. Edit pages), and I also added icon attributes which allowed me to use the bootstrap menu icons e.g:

<mvcSiteMapNode title="Till" controller="Home" action="Index" area="Till" iconClass="icon-home" visibility="true">

I went a bit off-topic there, but I just wanted to highlight how flexible MvcSiteMap is.

like image 41
markpsmith Avatar answered Nov 09 '22 02:11

markpsmith