mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-03 18:53:17 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			608 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			608 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { BaseCRUDAPI } from "../_base";
 | 
						|
import { CreateIngredientUnit, IngredientUnit } from "~/types/api-types/recipe";
 | 
						|
 | 
						|
const prefix = "/api";
 | 
						|
 | 
						|
const routes = {
 | 
						|
  unit: `${prefix}/units`,
 | 
						|
  unitsUnit: (tag: string) => `${prefix}/units/${tag}`,
 | 
						|
  merge: `${prefix}/units/merge`,
 | 
						|
};
 | 
						|
 | 
						|
export class UnitAPI extends BaseCRUDAPI<CreateIngredientUnit, IngredientUnit> {
 | 
						|
  baseRoute: string = routes.unit;
 | 
						|
  itemRoute = routes.unitsUnit;
 | 
						|
 | 
						|
  merge(fromId: string, toId: string) {
 | 
						|
    // @ts-ignore TODO: fix this
 | 
						|
    return this.requests.put<IngredientUnit>(routes.merge, { fromUnit: fromId, toUnit: toId });
 | 
						|
  }
 | 
						|
}
 |