File tree Expand file tree Collapse file tree 6 files changed +30
-10
lines changed
src/DynamicAuthorization.Mvc.Ui/Views Expand file tree Collapse file tree 6 files changed +30
-10
lines changed Original file line number Diff line number Diff line change 1- @model RoleViewModel
1+ @using DynamicAuthorization .Mvc .Ui
2+ @using DynamicAuthorization .Mvc .Ui .ViewModels
3+ @using Microsoft .AspNetCore .Identity
4+ @using DynamicAuthorization .Mvc .Core
5+ @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
6+ @model RoleViewModel
27@{
38 ViewData [" Title" ] = " Create Role" ;
49 var controllers = (IEnumerable <MvcControllerInfo >)ViewData [" Controllers" ];
Original file line number Diff line number Diff line change 1- @model RoleViewModel
1+ @using DynamicAuthorization .Mvc .Ui
2+ @using DynamicAuthorization .Mvc .Ui .ViewModels
3+ @using Microsoft .AspNetCore .Identity
4+ @using DynamicAuthorization .Mvc .Core
5+ @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
6+ @model RoleViewModel
27@{
38 ViewData [" Title" ] = " Edit Role" ;
49 var controllers = (IEnumerable <MvcControllerInfo >)ViewData [" Controllers" ];
Original file line number Diff line number Diff line change 1- @model IEnumerable <IdentityRole >
1+ @using DynamicAuthorization .Mvc .Ui
2+ @using DynamicAuthorization .Mvc .Ui .ViewModels
3+ @using Microsoft .AspNetCore .Identity
4+ @using DynamicAuthorization .Mvc .Core
5+ @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
6+ @model IEnumerable <IdentityRole >
27
38@{
49 ViewData [" Title" ] = " Role List" ;
Original file line number Diff line number Diff line change 1- @model UserRoleViewModel
1+ @using DynamicAuthorization .Mvc .Ui
2+ @using DynamicAuthorization .Mvc .Ui .ViewModels
3+ @using Microsoft .AspNetCore .Identity
4+ @using DynamicAuthorization .Mvc .Core
5+ @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
6+ @model UserRoleViewModel
27@{
38 ViewData [" Title" ] = " Edit User Access" ;
49 var roles = (IEnumerable <IdentityRole >)ViewData [" Roles" ];
Original file line number Diff line number Diff line change 1- @model IEnumerable <UserRoleViewModel >
1+ @using DynamicAuthorization .Mvc .Ui
2+ @using DynamicAuthorization .Mvc .Ui .ViewModels
3+ @using Microsoft .AspNetCore .Identity
4+ @using DynamicAuthorization .Mvc .Core
5+ @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
6+ @model IEnumerable <UserRoleViewModel >
27@{
38 ViewData [" Title" ] = " User Role List" ;
49}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments