changed hardcoded email reminders to 10 vs 60 minutes. adding ability to change reminder time soon
This commit is contained in:
parent
f0f0f3ef3d
commit
a08e502d01
1 changed files with 2 additions and 2 deletions
|
@ -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 }],
|
||||
},
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue