cfp-bot/calendar_processor.js
Ricardo Henrique Gracini Guiraldelli 8115ebacd4 Fixed calendar inclusion
With no return of the object, the main program couldn't verify the
proper addition of the event in the calendar.
2015-08-30 13:25:58 +02:00

6 lines
208 B
JavaScript

// connects to Google Calendar and creates an event in the default calendar
// of the account
function create_event(title, date){
return CalendarApp.getDefaultCalendar().createAllDayEvent(title, date);
}