12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- using InABox.Core;
- namespace Comal.Classes
- {
- [Caption("View Address Book Dock Panel")]
- public class CanViewContactsDock : EnabledSecurityDescriptor<CoreLicense, Contact>
- {
- }
- [Caption("Can Configure Panels")]
- public class CanConfigurePanels : DisabledSecurityDescriptor<CoreLicense>
- {
- }
- [Caption("View In/Out Module")]
- public class CanViewInOutBoard : EnabledSecurityDescriptor<HumanResourcesLicense, TimeSheet, LeaveRequest>
- {
- }
- [Caption("Bypass TimeBench Clockin")]
- public class CanBypassTimeBench : EnabledSecurityDescriptor<HumanResourcesLicense, TimeSheet>
- {
- }
- [Caption("Bypass Bluetooth Gate Clockin Check")]
- public class CanBypassBluetoothGates : EnabledSecurityDescriptor<HumanResourcesLicense, TimeSheet>
- {
- }
- [Caption("Bypass GPS For Clock In")]
- public class CanBypassGPSClockIn : DisabledSecurityDescriptor<HumanResourcesLicense, TimeSheet>
- {
- }
- [Caption("Automatically Create Timesheet on Log In")]
- public class AutoGenerateTimesheet : DisabledSecurityDescriptor<HumanResourcesLicense, TimeSheet>
- {
- }
- [Caption("Monitor Usage of Other Applications")]
- public class MonitorApplicationWindows : DisabledSecurityDescriptor<HumanResourcesLicense, Assignment>
- {
- }
- [Caption("Record Screen Captures")]
- public class CanRecordScreen : EnabledSecurityDescriptor<CoreLicense, Assignment>
- {
- }
-
- [Caption("View Digital Forms Dock")]
- public class CanViewDigitalFormsDock : EnabledSecurityDescriptor<DigitalFormsLicense, DigitalForm>
- {
- }
- [Caption("View Data Entry Panel")]
- public class CanViewDataEntryPanel : EnabledSecurityDescriptor<CoreLicense>
- {
- }
- [Caption("Setup Data Entry Tags")]
- public class CanSetupDataEntryTags : EnabledSecurityDescriptor<CoreLicense>
- {
- }
- }
|