(id, options = {})
| 11 | })) |
| 12 | |
| 13 | export const updateEvent = (id, options = {}) => fetchJson(`/db/event/${id}`, _.assign({}, { |
| 14 | method: 'PUT', |
| 15 | json: options |
| 16 | })) |
| 17 | |
| 18 | export const postEventMember = (id, options = {}) => fetchJson(`/db/event/${id}/member`, _.assign({}, { |
| 19 | method: 'POST', |