浏览代码

PRS CLASSES - security descriptors for mobile restricting subbies to certain jobs

Nick-PRSDigital@bitbucket.org 2 年之前
父节点
当前提交
8e5f4cc63c

+ 5 - 0
prs.classes/SecurityDescriptors/HumanResources_Descriptors.cs

@@ -75,4 +75,9 @@ namespace Comal.Classes
     public class CanViewMobileInOutBoardDetails : DisabledSecurityDescriptor<HumanResourcesLicense, User>
     {
     }
+
+    [Caption("Is Job-Only Employee")]
+    public class IsJobOnlyEmployee : DisabledSecurityDescriptor<HumanResourcesLicense, User>
+    {
+    }
 }

+ 5 - 0
prs.classes/SecurityDescriptors/Task_Descriptors.cs

@@ -37,4 +37,9 @@ namespace Comal.Classes
     public class CanSetKanbanCompletedDate : DisabledSecurityDescriptor<TaskManagementLicense, Kanban>
     {
     }
+
+    [Caption("Can Share Task Details With Others")]
+    public class CanShareTaskDetails : DisabledSecurityDescriptor<TaskManagementLicense, Kanban>
+    {
+    }
 }