mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-03 18:53:17 -05:00 
			
		
		
		
	Co-authored-by: Michael Genson <71845777+michael-genson@users.noreply.github.com> Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com>
		
			
				
	
	
		
			21 lines
		
	
	
		
			650 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			650 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { BaseCRUDAPI } from "../base/base-clients";
 | 
						|
import { config } from "../config";
 | 
						|
import type { RecipeTool, RecipeToolCreate, RecipeToolResponse } from "~/lib/api/types/recipe";
 | 
						|
 | 
						|
const prefix = config.PREFIX + "/organizers";
 | 
						|
 | 
						|
const routes = {
 | 
						|
  tools: `${prefix}/tools`,
 | 
						|
  toolsId: (id: string) => `${prefix}/tools/${id}`,
 | 
						|
  toolsSlug: (id: string) => `${prefix}/tools/slug/${id}`,
 | 
						|
};
 | 
						|
 | 
						|
export class ToolsApi extends BaseCRUDAPI<RecipeToolCreate, RecipeTool> {
 | 
						|
  baseRoute: string = routes.tools;
 | 
						|
  itemRoute = routes.toolsId;
 | 
						|
 | 
						|
  async bySlug(slug: string) {
 | 
						|
    return await this.requests.get<RecipeToolResponse>(routes.toolsSlug(slug));
 | 
						|
  }
 | 
						|
}
 |