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