feat: Implement update flow folder API endpoint

This commit is contained in:
Faruk AYDIN
2025-02-04 14:15:49 +01:00
parent 2401d78239
commit 15d02e3b7f
8 changed files with 301 additions and 7 deletions

View File

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