소스 검색

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

Nick-PRSDigital@bitbucket.org 2 년 전
부모
커밋
8e5f4cc63c
2개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      prs.classes/SecurityDescriptors/HumanResources_Descriptors.cs
  2. 5 0
      prs.classes/SecurityDescriptors/Task_Descriptors.cs

+ 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>
+    {
+    }
 }