mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-05-24 01:12:54 -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;
|
|
}
|