コード例 #1
0
 private static bool TheUserHasAccessToEverything(Role role)
 {
     return role.AllContent;
 }
コード例 #2
0
 private static bool TheRoleIsNotDefined(Role role)
 {
     return role == null;
 }
コード例 #3
0
 private static bool TheRoleDoesNotHaveAccessToThisController(string controller, Role role)
 {
     return role.AvailableModules.Contains(controller) == false;
 }
コード例 #4
0
 private static bool TheRoleIsInactive(Role role)
 {
     return role.Inactive;
 }
コード例 #5
0
 private static bool TheRoleDoesNotHaveAccessToThisContentTreeSectionNode(ContentTreeSectionNode contentTreeSectionNode, Role role)
 {
     return role.AvailableContentSections.Contains(contentTreeSectionNode.Id) == false;
 }