fix: Unable to subscribe to fileOperation webhook events

This commit is contained in:
Tom Moor
2022-11-15 20:03:20 -05:00
parent e6ef5a16cc
commit 01a482552a
5 changed files with 19 additions and 17 deletions

View File

@@ -61,7 +61,7 @@ router.post(
});
const event: WebhookSubscriptionEvent = {
name: "webhook_subscriptions.create",
name: "webhookSubscriptions.create",
modelId: webhookSubscription.id,
teamId: user.teamId,
actorId: user.id,
@@ -94,7 +94,7 @@ router.post(
await webhookSubscription.destroy();
const event: WebhookSubscriptionEvent = {
name: "webhook_subscriptions.delete",
name: "webhookSubscriptions.delete",
modelId: webhookSubscription.id,
teamId: user.teamId,
actorId: user.id,
@@ -139,7 +139,7 @@ router.post(
});
const event: WebhookSubscriptionEvent = {
name: "webhook_subscriptions.update",
name: "webhookSubscriptions.update",
modelId: webhookSubscription.id,
teamId: user.teamId,
actorId: user.id,