fix: [CODE-2954]: fix webhook query (#3175)

* fix: [CODE-2954]: fix webhook query
BT-10437
Abhinav Singh 2024-12-19 05:02:19 +00:00 committed by Harness
parent 800947f7f1
commit 4a55edad29
1 changed files with 1 additions and 1 deletions

View File

@ -558,7 +558,7 @@ func applyWebhookFilter(
}
if opts.SkipInternal {
stmt = stmt.Where("webhook_type == ?", enum.WebhookTypeExternal)
stmt = stmt.Where("webhook_type = ?", enum.WebhookTypeExternal)
}
return stmt