fix: hooks

pull/9078/head
Agusti Fernandez Pardo 2022-05-20 21:52:41 +02:00
parent f9e98228c7
commit 1f8c895900
4 changed files with 9 additions and 12 deletions

View File

@ -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>[];

View File

@ -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,

View File

@ -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({

View File

@ -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