File size: 665 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
export const fetchBookings = () => {
return $.ajax({
method: "GET",
url: `/api/bookings`
});
}
export const fetchBooking = id => (
$.ajax({
method: 'Get',
url: `/api/bookings/${id}`
})
);
export const createBooking = booking => (
$.ajax({
method: 'Post',
url:`/api/bookings`,
data : { booking }
})
);
export const updateBooking = booking => (
$.ajax({
method: 'Patch',
url: `api/bookings/${booking.id}`,
data: { booking }
})
);
export const deleteBooking = id => (
$.ajax({
method: 'Delete',
url: `api/bookings/${id}`
})
);
|