mealie/frontend/api/class-interfaces/group-webhooks.ts
2022-05-21 11:22:02 -08:00

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;
}