12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- using InABox.Core;
- namespace Comal.Classes
- {
- [Caption("Change Timesheet Start/Finish Times")]
- public class CanChangeStartFinishTimes : DisabledSecurityDescriptor<HumanResourcesLicense, TimeSheet>
- {
- }
- [Caption("Approve Timesheets")]
- public class CanApproveTimesheets : EnabledSecurityDescriptor<HumanResourcesLicense, TimeSheet>
- {
- }
- [Caption("Archive Timesheets")]
- public class CanArchiveTimesheets : DisabledSecurityDescriptor<HumanResourcesLicense, TimeSheet>
- {
- }
- [Caption("Approve Leave Requests")]
- public class CanApproveLeaveRequests : EnabledSecurityDescriptor<HumanResourcesLicense, LeaveRequest>
- {
- }
- [Caption("View Org Charts (Employee)")]
- [SecurityDescriptorScope(SecurityDescriptorScope.Global)]
- public class CanViewOrgChartByEmployee : EnabledSecurityDescriptor<HumanResourcesLicense, Employee>
- {
- }
- [Caption("View Org Charts (Position)")]
- [SecurityDescriptorScope(SecurityDescriptorScope.Global)]
- public class CanViewOrgChartByPosition : EnabledSecurityDescriptor<HumanResourcesLicense, Employee, EmployeePosition>
- {
- }
- [Caption("View Org Charts (Job Role)")]
- [SecurityDescriptorScope(SecurityDescriptorScope.Global)]
- public class CanViewOrgChartByRole : EnabledSecurityDescriptor<HumanResourcesLicense, Employee, EmployeeRole>
- {
- }
- [Caption("Edit Org Chart Structure")]
- public class CanEditOrgChart : EnabledSecurityDescriptor<HumanResourcesLicense, Employee>
- {
- }
- [Caption("View User Passwords")]
- public class CanViewPasswords : DisabledSecurityDescriptor<HumanResourcesLicense, User>
- {
- }
- [Caption("Allow Timesheet Midnight Rollover")]
- public class AllowTimeSheetRollover : DisabledSecurityDescriptor<HumanResourcesLicense, TimeSheet>
- {
- }
- [SecurityDescriptorScope(SecurityDescriptorScope.Global)]
- [Caption("Allow Split Shifts in Employee Rosters")]
- public class AllowEmployeeRosterSplitShifts : DisabledSecurityDescriptor<HumanResourcesLicense, Employee, EmployeeRoster>
- {
- }
- [Caption("View Public Holidays On Mobile")]
- public class CanViewPublicHolidaysOnMobile : DisabledSecurityDescriptor<HumanResourcesLicense, StandardLeave>
- {
- }
- [Caption("Create Mobile Phone Credential Links")]
- public class CanCreateMobilePhoneCredentialLinks : DisabledSecurityDescriptor<HumanResourcesLicense, User>
- {
- }
- }
|