mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 18:23:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			592 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			592 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { BaseCRUDAPI } from "../base/base-clients";
 | |
| import type { CreateCookBook, ReadCookBook, 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, ReadCookBook, UpdateCookBook> {
 | |
|   baseRoute: string = routes.cookbooks;
 | |
|   itemRoute = routes.cookbooksId;
 | |
| 
 | |
|   async updateAll(payload: UpdateCookBook[]) {
 | |
|     return await this.requests.put(this.baseRoute, payload);
 | |
|   }
 | |
| }
 |