Sync recurring events from GCal

Add ability to import recurring events directly from the Google Calendar.
This commit is contained in:
CiTR Tech 2019-01-16 12:26:08 -08:00 committed by GitHub
parent ee24c7b8a7
commit c99d00017f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -359,7 +359,8 @@ class Google_Sync {
$params = [
'timeMin' => date3339($start),
'timeMax' => date3339($end)
'timeMax' => date3339($end),
'singleEvents' => true,
];
return $this->service->events->listEvents($google_calendar, $params);