feat: Extend execution serializer with status
This commit is contained in:
@@ -8,6 +8,10 @@ const executionSerializer = (execution) => {
|
||||
updatedAt: execution.updatedAt.getTime(),
|
||||
};
|
||||
|
||||
if (execution.status) {
|
||||
executionData.status = execution.status;
|
||||
}
|
||||
|
||||
if (execution.flow) {
|
||||
executionData.flow = flowSerializer(execution.flow);
|
||||
}
|
||||
|
Reference in New Issue
Block a user