fix: hooks
parent
f9e98228c7
commit
1f8c895900
|
@ -177,7 +177,7 @@ export type SchedulesResponse = BaseResponse & {
|
|||
|
||||
// Webhook
|
||||
export type WebhookResponse = BaseResponse & {
|
||||
webhook?: Partial<Webhook>;
|
||||
webhook?: Partial<Webhook> | null;
|
||||
};
|
||||
export type WebhooksResponse = BaseResponse & {
|
||||
webhooks?: Partial<Webhook>[];
|
||||
|
|
|
@ -50,7 +50,6 @@ export const schemaWebhookReadPublic = Webhook.pick({
|
|||
eventTypeId: true,
|
||||
payloadTemplate: true,
|
||||
eventTriggers: true,
|
||||
/** @todo: find out why this breaks the api */
|
||||
// eventType: true,
|
||||
// app: true,
|
||||
appId: true,
|
||||
|
|
|
@ -51,7 +51,7 @@ export async function WebhookById(
|
|||
case "GET":
|
||||
await prisma.webhook
|
||||
.findUnique({ where: { id: safeQuery.data.id } })
|
||||
.then((data) => schemaWebhookReadPublic.parse(data))
|
||||
// .then((data) => schemaWebhookReadPublic.parse(data))
|
||||
.then((webhook) => res.status(200).json({ webhook }))
|
||||
.catch((error: Error) =>
|
||||
res.status(404).json({
|
||||
|
|
|
@ -29,15 +29,13 @@ async function createOrlistAllWebhooks(
|
|||
* 404:
|
||||
* description: No webhooks were found
|
||||
*/
|
||||
const data = await prisma.webhook.findMany({ where: { userId } });
|
||||
// const webhooks = data.map((webhook) => schemaWebhookReadPublic.parse(webhook));
|
||||
if (data) res.status(200).json({ webhooks: data });
|
||||
else
|
||||
(error: Error) =>
|
||||
res.status(404).json({
|
||||
message: "No Webhooks were found",
|
||||
error,
|
||||
});
|
||||
await prisma.webhook
|
||||
.findMany({ where: { userId } })
|
||||
.then((data) => res.status(200).json({ webhooks: data }))
|
||||
.catch((error) => {
|
||||
console.log(error);
|
||||
res.status(404).json({ message: "No webhooks were found", error });
|
||||
});
|
||||
} else if (method === "POST") {
|
||||
/**
|
||||
* @swagger
|
||||
|
|
Loading…
Reference in New Issue