1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- 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("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>
- {
- }
- [Caption("View Public Holidays On Mobile")]
- public class CanViewPublicHolidaysOnMobile : DisabledSecurityDescriptor<HumanResourcesLicense, StandardLeave>
- {
- }
- [Caption("Send Mobile Phone Credentials")]
- public class CanCreateMobilePhoneCredentialLinks : DisabledSecurityDescriptor<HumanResourcesLicense, User>
- {
- }
- [Caption("View Mobile In Out Board Details")]
- public class CanViewMobileInOutBoardDetails : DisabledSecurityDescriptor<HumanResourcesLicense, User>
- {
- }
- [Caption("Is Job-Only Employee")]
- public class IsJobOnlyEmployee : DisabledSecurityDescriptor<HumanResourcesLicense, User>
- {
- }
- }
|