feat(MoveToShelf): move selected books to shelf

This commit is contained in:
0ry5 2024-09-30 21:32:24 +02:00
parent 65e9aa2e0b
commit c03aa30cfd
12 changed files with 331 additions and 69 deletions
middleware/types

View file

@ -9,3 +9,8 @@ export type Book = {
contact: string | null;
shelf: "AVAILABLE" | "FNORD1" | "FNORD2" | "SHARING" | null;
};
export interface MoveShelfAction {
target: Book["shelf"];
books: Book["uuid"][];
}