mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 10:13:32 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			412 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			412 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { BaseCRUDAPI } from "../_base";
 | |
| import { CreateWebhook, ReadWebhook } from "~/types/api-types/group";
 | |
| 
 | |
| const prefix = "/api";
 | |
| 
 | |
| const routes = {
 | |
|   webhooks: `${prefix}/groups/webhooks`,
 | |
|   webhooksId: (id: string | number) => `${prefix}/groups/webhooks/${id}`,
 | |
| };
 | |
| 
 | |
| export class WebhooksAPI extends BaseCRUDAPI<CreateWebhook, ReadWebhook> {
 | |
|   baseRoute = routes.webhooks;
 | |
|   itemRoute = routes.webhooksId;
 | |
| }
 |