Files
automatisch/packages/backend/src/routes/api/v1/flows.js
2025-02-04 14:17:03 +01:00

63 lines
2.0 KiB
JavaScript

import { Router } from 'express';
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';
import updateFlowAction from '../../../controllers/api/v1/flows/update-flow.js';
import updateFlowStatusAction from '../../../controllers/api/v1/flows/update-flow-status.js';
import updateFlowFolderAction from '../../../controllers/api/v1/flows/update-flow-folder.js';
import createFlowAction from '../../../controllers/api/v1/flows/create-flow.js';
import createStepAction from '../../../controllers/api/v1/flows/create-step.js';
import deleteFlowAction from '../../../controllers/api/v1/flows/delete-flow.js';
import duplicateFlowAction from '../../../controllers/api/v1/flows/duplicate-flow.js';
import exportFlowAction from '../../../controllers/api/v1/flows/export-flow.js';
import importFlowAction from '../../../controllers/api/v1/flows/import-flow.js';
const router = Router();
router.get('/', authenticateUser, authorizeUser, getFlowsAction);
router.get('/:flowId', authenticateUser, authorizeUser, getFlowAction);
router.post('/', authenticateUser, authorizeUser, createFlowAction);
router.patch('/:flowId', authenticateUser, authorizeUser, updateFlowAction);
router.patch(
'/:flowId/status',
authenticateUser,
authorizeUser,
updateFlowStatusAction
);
router.patch(
'/:flowId/folder',
authenticateUser,
authorizeUser,
updateFlowFolderAction
);
router.post(
'/:flowId/export',
authenticateUser,
authorizeUser,
exportFlowAction
);
router.post('/import', authenticateUser, authorizeUser, importFlowAction);
router.post(
'/:flowId/steps',
authenticateUser,
authorizeUser,
createStepAction
);
router.post(
'/:flowId/duplicate',
authenticateUser,
authorizeUser,
duplicateFlowAction
);
router.delete('/:flowId', authenticateUser, authorizeUser, deleteFlowAction);
export default router;