feat: Implement delete step rest API endpoint

This commit is contained in:
Faruk AYDIN
2024-08-23 16:53:14 +03:00
parent 5af1d94fc0
commit 0cf9bc1a32
6 changed files with 178 additions and 2 deletions

View File

@@ -63,6 +63,10 @@ const authorizationList = {
action: 'read',
subject: 'Execution',
},
'DELETE /api/v1/steps/:stepId': {
action: 'update',
subject: 'Flow',
},
};
export const authorizeUser = async (request, response, next) => {