feat: mark book as read

This commit is contained in:
2025-10-22 14:34:08 +02:00
parent c4ca073b4a
commit 517765114d
10 changed files with 94 additions and 34 deletions

View File

@@ -36,8 +36,8 @@ export function postBook(book) {
return genericPostCall('/book', book.value)
}
export async function postUserBook(userbook) {
return genericPostCall('/userbook', userbook)
export async function postReadBook(userbook) {
return genericPostCall('/book/read', userbook)
}
export function postLogin(user) {