feat: Implement get execution steps API endpoint

This commit is contained in:
Faruk AYDIN
2024-03-06 17:22:09 +01:00
parent e40d6c5ef0
commit c4fd03542b
5 changed files with 227 additions and 0 deletions

View File

@@ -19,6 +19,10 @@ const authorizationList = {
action: 'read',
subject: 'Execution',
},
'GET /api/v1/executions/:executionId/execution-steps': {
action: 'read',
subject: 'Execution',
},
};
export const authorizeUser = async (request, response, next) => {