feat: Implement get execution API endpoint

This commit is contained in:
Faruk AYDIN
2024-03-03 18:53:14 +01:00
parent 6d85623d9b
commit ede8703f9d
6 changed files with 175 additions and 0 deletions

View File

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