feat: Implement an API endpoint to get flow folder

This commit is contained in:
Faruk AYDIN
2025-02-06 12:44:15 +01:00
parent 586348039d
commit 529eec69e9
5 changed files with 118 additions and 0 deletions

View File

@@ -153,6 +153,10 @@ const authorizationList = {
action: 'update',
subject: 'Flow',
},
'GET /api/v1/flows/:flowId/folder': {
action: 'read',
subject: 'Flow',
},
};
export const authorizeUser = async (request, response, next) => {