feat(api): add get flow endpoint
This commit is contained in:
8
packages/backend/src/routes/api/v1/flows.ee.js
Normal file
8
packages/backend/src/routes/api/v1/flows.ee.js
Normal file
@@ -0,0 +1,8 @@
|
||||
import { Router } from 'express';
|
||||
import getFlowAction from '../../../controllers/api/v1/flows/get-flow.ee.js';
|
||||
|
||||
const router = Router();
|
||||
|
||||
router.get('/:flowId', getFlowAction);
|
||||
|
||||
export default router;
|
||||
Reference in New Issue
Block a user