text stringlengths 0 13.4k |
|---|
return View(model); |
} |
} |
} |
Setting the Roles property on the [Authorize] attribute will ensure |
that the user must be logged in and assigned the Administrator role in |
order to view the page. |
Next, create a view model: |
Models/ManageUsersViewModel.cs |
using System.Collections.Generic; |
using AspNetCoreTodo.Models; |
namespace AspNetCoreTodo.Models |
{ |
public class ManageUsersViewModel |
{ |
public ApplicationUser[] Administrators { get; set; } |
public ApplicationUser[] Everyone { get; set;} |
} |
} |
87 |
Authorization with roles |
Finally, create a Views/ManageUsers folder and a view for the Index |
action: |
Views/ManageUsers/Index.cshtml |
@model ManageUsersViewModel |
@{ |
ViewData["Title"] = "Manage users"; |
} |
<h2>@ViewData["Title"]</h2> |
<h3>Administrators</h3> |
<table class="table"> |
<thead> |
<tr> |
<td>Id</td> |
<td>Email</td> |
</tr> |
</thead> |
@foreach (var user in Model.Administrators) |
{ |
<tr> |
<td>@user.Id</td> |
<td>@user.Email</td> |
</tr> |
} |
</table> |
<h3>Everyone</h3> |
<table class="table"> |
<thead> |
<tr> |
<td>Id</td> |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.