18 lines
486 B
JavaScript
18 lines
486 B
JavaScript
|
|
export const UNLOCKED_INCIDENT = 2;
|
|
export const UNSCHEDULED_INCIDENT = 3;
|
|
|
|
export const incidentDescriptions = {};
|
|
incidentDescriptions[UNLOCKED_INCIDENT] = 'User left door unlocked';
|
|
incidentDescriptions[UNSCHEDULED_INCIDENT] = 'Unscheduled use';
|
|
|
|
export const incidentLevelDescriptions = {
|
|
UNLOCKED_0: 'First month',
|
|
UNLOCKED_1: 'Second month',
|
|
UNLOCKED_2: 'Third month',
|
|
UNLOCKED_3: 'Fourth month',
|
|
UNLOCKED_4: 'Fifth month',
|
|
UNLOCKED_5: 'Sixth month',
|
|
|
|
};
|