mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 10:13:32 -04:00 
			
		
		
		
	feat(backend): ✨ add rename tag, tool, category support (#875)
This commit is contained in:
		| @@ -1,4 +1,5 @@ | ||||
| import { BaseCRUDAPI } from "../_base"; | ||||
| import { Recipe } from "~/types/api-types/recipe"; | ||||
|  | ||||
| const prefix = "/api"; | ||||
|  | ||||
| @@ -9,14 +10,24 @@ export interface CreateTool { | ||||
|  | ||||
| export interface Tool extends CreateTool { | ||||
|   id: number; | ||||
|   slug: string; | ||||
| } | ||||
|  | ||||
| export interface RecipeToolResponse extends Tool { | ||||
|   recipes: Recipe[]; | ||||
| } | ||||
|  | ||||
| const routes = { | ||||
|   tools: `${prefix}/tools`, | ||||
|   toolsId: (id: string) => `${prefix}/tools/${id}`, | ||||
|   toolsSlug: (id: string) => `${prefix}/tools/slug/${id}`, | ||||
| }; | ||||
|  | ||||
| export class ToolsApi extends BaseCRUDAPI<Tool, CreateTool> { | ||||
|   baseRoute: string = routes.tools; | ||||
|   itemRoute = routes.toolsId; | ||||
|  | ||||
|   async byslug(slug: string) { | ||||
|     return await this.requests.get<Tool>(routes.toolsSlug(slug)); | ||||
|   } | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user