Book form: add a field to write a review

This commit is contained in:
2026-03-15 15:23:14 +01:00
parent 524e517066
commit 2d0bce143a
6 changed files with 153 additions and 83 deletions

View File

@@ -122,11 +122,7 @@ export async function putStartReadDate(bookId, startdate) {
return genericPayloadCall('/ws/book/' + bookId, { startDate: startdate }, 'PUT')
}
export async function putWantReadBook(bookId, payload) {
return genericPayloadCall('/ws/book/' + bookId, payload, 'PUT')
}
export async function putRateBook(bookId, payload) {
export async function putUpdateBook(bookId, payload) {
return genericPayloadCall('/ws/book/' + bookId, payload, 'PUT')
}