feat(webhook): add webhook application

This commit is contained in:
Ali BARIN
2022-12-07 23:41:46 +01:00
parent 67964192de
commit 3c62f182ab
13 changed files with 107 additions and 20 deletions

View File

@@ -3,6 +3,8 @@ import webhookHandler from '../controllers/webhooks/handler';
const router = Router();
router.get('/:flowId', webhookHandler);
router.put('/:flowId', webhookHandler);
router.post('/:flowId', webhookHandler);
export default router;