Fixes for default webhook creation bug

This commit is contained in:
David Bomba
2026-01-28 09:12:18 +11:00
parent 1d941f3298
commit b1cfec07ac

View File

@@ -303,7 +303,6 @@ class WebhookController extends BaseController
$webhook = WebhookFactory::create($user->company()->id, $user->id);
$webhook->fill($request->all());
$webhook->save();
return $this->itemResponse($webhook);
}