Merge pull request #785 from automatisch/docs/webhooks

Docs: webhooks app
This commit is contained in:
Ali BARIN
2022-12-08 20:02:53 +01:00
committed by GitHub
6 changed files with 41 additions and 1 deletions

View File

@@ -5,6 +5,7 @@ const router = Router();
router.get('/:flowId', webhookHandler);
router.put('/:flowId', webhookHandler);
router.patch('/:flowId', webhookHandler);
router.post('/:flowId', webhookHandler);
export default router;