mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-04 03:03:18 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			882 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			882 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { BaseCRUDAPI } from "../base/base-clients";
 | 
						|
import { CreateGroupRecipeAction, GroupRecipeActionOut } from "~/lib/api/types/household";
 | 
						|
 | 
						|
const prefix = "/api";
 | 
						|
 | 
						|
const routes = {
 | 
						|
    groupRecipeActions: `${prefix}/households/recipe-actions`,
 | 
						|
    groupRecipeActionsId: (id: string | number) => `${prefix}/households/recipe-actions/${id}`,
 | 
						|
    groupRecipeActionsIdTriggerRecipeSlug: (id: string | number, recipeSlug: string) => `${prefix}/households/recipe-actions/${id}/trigger/${recipeSlug}`,
 | 
						|
  };
 | 
						|
 | 
						|
  export class GroupRecipeActionsAPI extends BaseCRUDAPI<CreateGroupRecipeAction, GroupRecipeActionOut> {
 | 
						|
    baseRoute = routes.groupRecipeActions;
 | 
						|
    itemRoute = routes.groupRecipeActionsId;
 | 
						|
 | 
						|
    async triggerAction(id: string | number, recipeSlug: string) {
 | 
						|
      return await this.requests.post(routes.groupRecipeActionsIdTriggerRecipeSlug(id, recipeSlug), {});
 | 
						|
    }
 | 
						|
  }
 |