Files
automatisch/packages/backend/src/routes/api/v1/flows.js
2024-03-08 23:11:42 +01:00

20 lines
602 B
JavaScript

import { Router } from 'express';
import asyncHandler from 'express-async-handler';
import { authenticateUser } from '../../../helpers/authentication.js';
import { authorizeUser } from '../../../helpers/authorization.js';
import getFlowsAction from '../../../controllers/api/v1/flows/get-flows.js';
import getFlowAction from '../../../controllers/api/v1/flows/get-flow.js';
const router = Router();
router.get('/', authenticateUser, authorizeUser, asyncHandler(getFlowsAction));
router.get(
'/:flowId',
authenticateUser,
authorizeUser,
asyncHandler(getFlowAction)
);
export default router;