docs: Add trigger and connection pages of webhooks app

This commit is contained in:
Faruk AYDIN
2022-12-08 21:58:58 +03:00
parent 0fefa4e43a
commit 89bcaa96ed
6 changed files with 34 additions and 2 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;