Setting 'busy' for event titles #370
-
Is it possible to modify the sync so that the title is simply 'busy' for anything that's been synced? I'd love it as well if I could remove the location and description of the event so that it's simply marked as a busy time for me rather than having the event details added to the Google calendar. thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Sure. The event title is set in Helpers.gs line 360, just change it to Just look through function createEvent() and you will find every property, just remove the respective lines for each property you want to ignore, e.g.:
location, Helpers.gs lines 386+387
|
Beta Was this translation helpful? Give feedback.
Sure. The event title is set in Helpers.gs line 360, just change it to
newEvent.summary = 'busy';
Just look through function createEvent() and you will find every property, just remove the respective lines for each property you want to ignore, e.g.:
description, Helpers.gs lines 383+384
location, Helpers.gs lines 386+387