changed hardcoded email reminders to 10 vs 60 minutes. adding ability to change reminder time soon

This commit is contained in:
Peer Richelsen 2021-07-27 13:45:53 +02:00
parent f0f0f3ef3d
commit a08e502d01

View file

@ -363,7 +363,7 @@ const GoogleCalendar = (credential): CalendarApiAdapter => {
attendees: event.attendees,
reminders: {
useDefault: false,
overrides: [{ method: "email", minutes: 60 }],
overrides: [{ method: "email", minutes: 10 }],
},
};
@ -410,7 +410,7 @@ const GoogleCalendar = (credential): CalendarApiAdapter => {
attendees: event.attendees,
reminders: {
useDefault: false,
overrides: [{ method: "email", minutes: 60 }],
overrides: [{ method: "email", minutes: 10 }],
},
};