Merge pull request #110 from calcom/fix/webhook-issue

Hotfix CTX removal from webhooks
This commit is contained in:
Syed Ali Shahbaz
2022-06-08 13:21:17 +05:30
committed by GitHub
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -96,7 +96,7 @@ export async function WebhookById(
}
}
if (safeBody.data.eventTypeId) {
const team = await ctx.prisma.team.findFirst({
const team = await prisma.team.findFirst({
where: {
eventTypes: {
some: {
+1 -1
View File
@@ -62,7 +62,7 @@ async function createOrlistAllWebhooks(
return;
}
if (safe.data.eventTypeId) {
const team = await ctx.prisma.team.findFirst({
const team = await prisma.team.findFirst({
where: {
eventTypes: {
some: {