mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-29 01:04:18 -04: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<IngredientUnit, CreateIngredientUnit> {
 | |
|   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 });
 | |
|   }
 | |
| }
 |