Project_Descriptors.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. [Caption("View Jobs Dock Panel")]
  5. public class CanViewJobDock : EnabledSecurityDescriptor<ProjectManagementLicense, Job>
  6. {
  7. }
  8. [Caption("Create Jobs from Imported Emails")]
  9. public class CanCreateJobsFromEmails : DisabledSecurityDescriptor<ProjectManagementLicense, Job>
  10. {
  11. }
  12. [Caption("Approve Bills of Materials")]
  13. public class CanApproveBillsOfMaterials : EnabledSecurityDescriptor<ProjectManagementLicense, JobBillOfMaterials>
  14. {
  15. }
  16. [Caption("Approve Job Requisitions")]
  17. public class CanApproveJobRequisitions : EnabledSecurityDescriptor<ProjectManagementLicense, JobRequisition>
  18. {
  19. }
  20. [Caption("Change Dates on Document MileStones")]
  21. public class CanEditJobDocumentSetMileStoneDates : DisabledSecurityDescriptor<ProjectManagementLicense, JobDocumentSetMileStone>
  22. {
  23. }
  24. [Caption("View Web General Documents from App")]
  25. public class CanViewGeneralJobDocuments : DisabledSecurityDescriptor<ProjectManagementLicense, JobDocumentSetMileStone>
  26. {
  27. }
  28. [Caption("View Job Documents Mile Stone Files")]
  29. public class CanViewJobDocumentMileStoneFiles : EnabledSecurityDescriptor<ProjectManagementLicense, JobDocumentSetMileStone>
  30. {
  31. }
  32. [Caption("View All Jobs (Not Restricted to Jobs Employee is Assigned to")]
  33. public class CanViewAllJobs : EnabledSecurityDescriptor<ProjectManagementLicense, Job>
  34. {
  35. }
  36. [Caption("Open Mobile Native PDF Viewer")]
  37. public class CanOpenMobileNativePDFViewer : DisabledSecurityDescriptor<ProjectManagementLicense, JobDocumentSetMileStone>
  38. {
  39. }
  40. }