123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- using InABox.Core;
- namespace Comal.Classes
- {
- [Caption("View Jobs Dock Panel")]
- public class CanViewJobDock : EnabledSecurityDescriptor<ProjectManagementLicense, Job>
- {
- }
- [Caption("Create Jobs from Imported Emails")]
- public class CanCreateJobsFromEmails : DisabledSecurityDescriptor<ProjectManagementLicense, Job>
- {
- }
- [Caption("Approve Bills of Materials")]
- public class CanApproveBillsOfMaterials : EnabledSecurityDescriptor<ProjectManagementLicense, JobBillOfMaterials>
- {
- }
-
- [Caption("Approve Job Requisitions")]
- public class CanApproveJobRequisitions : EnabledSecurityDescriptor<ProjectManagementLicense, JobRequisition>
- {
- }
-
- [Caption("Change Dates on Document MileStones")]
- public class CanEditJobDocumentSetMileStoneDates : DisabledSecurityDescriptor<ProjectManagementLicense, JobDocumentSetMileStone>
- {
- }
- [Caption("View Web General Documents from App")]
- public class CanViewGeneralJobDocuments : DisabledSecurityDescriptor<ProjectManagementLicense, JobDocumentSetMileStone>
- {
- }
- [Caption("View Job Documents Mile Stone Files")]
- public class CanViewJobDocumentMileStoneFiles : EnabledSecurityDescriptor<ProjectManagementLicense, JobDocumentSetMileStone>
- {
- }
- [Caption("View All Jobs (Not Restricted to Jobs Employee is Assigned to")]
- public class CanViewAllJobs : EnabledSecurityDescriptor<ProjectManagementLicense, Job>
- {
- }
- [Caption("Open Mobile Native PDF Viewer")]
- public class CanOpenMobileNativePDFViewer : DisabledSecurityDescriptor<ProjectManagementLicense, JobDocumentSetMileStone>
- {
- }
- [Caption("Can Approve Setouts")]
- public class CanApproveSetouts : DisabledSecurityDescriptor<ProjectManagementLicense, Setout>
- {
- }
- [Caption("Can Mark Up Setouts")]
- public class CanMarkUpSetouts : DisabledSecurityDescriptor<ProjectManagementLicense, Setout>
- {
- }
- [Caption("Can approve setouts with no group")]
- public class CanApproveSetoutsWithoutGroup : DisabledSecurityDescriptor<ProjectManagementLicense, Setout>
- {
- }
- public class CanCancelAllJobRequisitions : DisabledSecurityDescriptor<ProjectManagementLicense, Job>
- {
- }
- public class CanReleaseJobReserves : DisabledSecurityDescriptor<ProjectManagementLicense, Job>
- {
- }
- }
|