Robert Fels

Results 2 comments of Robert Fels

``` POST https://graph.microsoft.com/v1.0/me/calendars/AAMkAGViNDU9zAAAAAGtlAAA=/events Content-type: application/json { "subject": "Let's go for lunch", "body": { "contentType": "HTML", "content": "Does next month work for you?" }, "start": { "dateTime": "2019-03-10T12:00:00", "timeZone": "Pacific Standard...

Maybe something like this `CalendarService.ts` in office365calendar/lib: ``` private translateEvent = (event: CalendarEvent) => { const locationUrl = getLocation(event); const isTeamsMeeting = locationUrl && locationUrl.includes("teams.microsoft.com"); const eventDetails: any = {...