generated from howdy39/gas-clasp-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.example.ts
28 lines (28 loc) · 943 Bytes
/
config.example.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
export const Config = {
BlockWorkCalWithPersonEventPlaceholders: {
Enabled: true,
WorkCalID: '[email protected]',
PersonalCalID: '[email protected]',
WorkEventPlaceholderTitle: 'Busy',
WorkDayStartHour: 8,
WorkDayEndHour: 19
},
EndingSoonEvents: {
Enabled: true,
PrimaryCalID: '[email protected]', // id of the primary calendar to pull events from
EndNotifCalID: '[email protected]', // id of the secondary calendar to push to
LookAheadDays: 1 // days to look ahead and create events for
},
SunsetWalkEvents: {
Enabled: true,
DaysToCreate: 14,
Latitude: 0.0, // your latitude
Longitude: 0.0 // your longitude
},
Cleanup: {
Enabled: false,
CalID: '[email protected]', // id of the calendar to clean up
Regex: /Busy/, // regex match event title
Days: 14 // days to look ahead and create events for
}
};