feat: Implement webhook logic along with new entry typeform trigger
This commit is contained in:
8
packages/backend/src/routes/webhooks.ts
Normal file
8
packages/backend/src/routes/webhooks.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import createAction from '../controllers/webhooks/create';
|
||||
import { Router } from 'express';
|
||||
|
||||
const router = Router();
|
||||
|
||||
router.post('/:flowId', createAction);
|
||||
|
||||
export default router;
|
Reference in New Issue
Block a user