mirror of
https://github.com/mealie-recipes/mealie.git
synced 2024-12-26 05:51:21 -08:00
19 lines
591 B
TypeScript
19 lines
591 B
TypeScript
import { BaseCRUDAPI } from "../base/base-clients";
|
|
import { CreateCookBook, RecipeCookBook, UpdateCookBook } from "~/lib/api/types/cookbook";
|
|
|
|
const prefix = "/api";
|
|
|
|
const routes = {
|
|
cookbooks: `${prefix}/households/cookbooks`,
|
|
cookbooksId: (id: number) => `${prefix}/households/cookbooks/${id}`,
|
|
};
|
|
|
|
export class CookbookAPI extends BaseCRUDAPI<CreateCookBook, RecipeCookBook, UpdateCookBook> {
|
|
baseRoute: string = routes.cookbooks;
|
|
itemRoute = routes.cookbooksId;
|
|
|
|
async updateAll(payload: UpdateCookBook[]) {
|
|
return await this.requests.put(this.baseRoute, payload);
|
|
}
|
|
}
|