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 feb24cd commit e03b40eCopy full SHA for e03b40e
services/static-webserver/client/source/class/osparc/store/PollTasks.js
@@ -83,6 +83,10 @@ qx.Class.define("osparc.store.PollTasks", {
83
return this.getTasks().filter(task => task.getTaskId().includes("from_study") && task.getTaskId().includes("as_template"));
84
},
85
86
+ getExportDataTasks: function() {
87
+ return this.getTasks().filter(task => task.getTaskName() && task.getTaskName() === "export_data");
88
+ },
89
+
90
removeTasks: function() {
91
const tasks = this.getTasks();
92
tasks.forEach(task => task.dispose());
0 commit comments