v0.9.63 updated for mobile
This commit is contained in:
@@ -114,7 +114,7 @@ export const api = {
|
||||
return req('GET', `/schedule${qs ? '?' + qs : ''}`);
|
||||
},
|
||||
getEvent: (id) => req('GET', `/schedule/${id}`),
|
||||
createEvent: (body) => req('POST', '/schedule', body),
|
||||
createEvent: (body) => req('POST', '/schedule', body), // body may include recurrenceRule: {freq,interval,byDay,ends,endDate,endCount}
|
||||
updateEvent: (id, body) => req('PATCH', `/schedule/${id}`, body),
|
||||
deleteEvent: (id) => req('DELETE', `/schedule/${id}`),
|
||||
setAvailability: (id, response) => req('PUT', `/schedule/${id}/availability`, { response }),
|
||||
|
||||
Reference in New Issue
Block a user