feat: Implement get executions API endpoint

This commit is contained in:
Faruk AYDIN
2024-03-06 14:46:19 +01:00
parent 25e231cd7c
commit 3ff89a03ac
5 changed files with 190 additions and 0 deletions

View File

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