mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-04 03:03:18 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			551 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			551 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { BaseCRUDAPI } from "../_base";
 | 
						|
 | 
						|
const prefix = "/api";
 | 
						|
 | 
						|
const routes = {
 | 
						|
  webhooks: `${prefix}/groups/webhooks`,
 | 
						|
  webhooksId: (id: string | number) => `${prefix}/groups/webhooks/${id}`,
 | 
						|
};
 | 
						|
 | 
						|
export interface CreateGroupWebhook {
 | 
						|
  enabled: boolean;
 | 
						|
  name: string;
 | 
						|
  url: string;
 | 
						|
  time: string;
 | 
						|
}
 | 
						|
 | 
						|
export interface GroupWebhook extends CreateGroupWebhook {
 | 
						|
  id: string;
 | 
						|
  groupId: string;
 | 
						|
}
 | 
						|
 | 
						|
export class WebhooksAPI extends BaseCRUDAPI<GroupWebhook, CreateGroupWebhook> {
 | 
						|
  baseRoute = routes.webhooks;
 | 
						|
  itemRoute = routes.webhooksId;
 | 
						|
}
 |