We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb675e9 commit 415d5eeCopy full SHA for 415d5ee
services/static-webserver/client/source/class/osparc/data/Job.js
@@ -28,6 +28,7 @@ qx.Class.define("osparc.data.Job", {
28
startedAt: jobData["startedAt"] ? new Date(jobData["startedAt"]) : null,
29
endedAt: jobData["endedAt"] ? new Date(jobData["endedAt"]) : null,
30
info: jobData["info"] || null,
31
+ customMetadata: jobData["customMetadata"] || null,
32
});
33
34
if (jobData["info"] && jobData["info"]["project_name"]) {
@@ -79,6 +80,12 @@ qx.Class.define("osparc.data.Job", {
79
80
nullable: true,
81
init: null,
82
},
83
+
84
+ customMetadata: {
85
+ check: "Object",
86
+ nullable: true,
87
+ init: null,
88
+ },
89
90
91
statics: {
0 commit comments