add new constants
This commit is contained in:
parent
bc88851620
commit
6984ca9be9
3 changed files with 21 additions and 0 deletions
8
src/constants/calendar-options.js
Normal file
8
src/constants/calendar-options.js
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
const calendarOptions = {
|
||||
ICAL: 'iCal',
|
||||
GOOGLE: 'Google',
|
||||
OUTLOOK: 'Outlook',
|
||||
OUTLOOKCOM: 'Outlook.com',
|
||||
YAHOO: 'Yahoo'
|
||||
};
|
||||
export default { calendarOptions };
|
||||
7
src/constants/calendar-status.js
Normal file
7
src/constants/calendar-status.js
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
const calendarStatus = {
|
||||
FREE: 'Free',
|
||||
BUSY: 'Busy',
|
||||
TENTATIVE: 'Tentative',
|
||||
OUT_OF_THE_OFFICE: 'OutOfTheOffice'
|
||||
};
|
||||
export default { calendarStatus };
|
||||
6
src/constants/service-type.js
Normal file
6
src/constants/service-type.js
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
const serviceType = {
|
||||
REPLACEMENT: 'replacement',
|
||||
REPAIR: 'repair',
|
||||
REPLACEMENT_AND_RECALIBRATION: 'replacement and recalibration'
|
||||
};
|
||||
export default { serviceType };
|
||||
Loading…
Reference in a new issue