feat: add header with id, name, date in Execution

This commit is contained in:
Ali BARIN
2022-08-10 20:59:29 +02:00
parent 5d7daa8886
commit a5b6e66e22
4 changed files with 89 additions and 16 deletions

View File

@@ -16,7 +16,8 @@ const getExecution = async (
steps: true
}
})
.findById(params.executionId);
.findById(params.executionId)
.throwIfNotFound();
return execution;
};