Skip to content

Commit 4c3149e

Browse files
committed
unused
1 parent 4b3d9d1 commit 4c3149e

File tree

1 file changed

+0
-18
lines changed
  • services/static-webserver/client/source/class/osparc/store

1 file changed

+0
-18
lines changed

services/static-webserver/client/source/class/osparc/store/Groups.js

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -230,24 +230,6 @@ qx.Class.define("osparc.store.Groups", {
230230
return null;
231231
},
232232

233-
fetchGroup: function(gid) {
234-
return new Promise(resolve => {
235-
if (gid) {
236-
this.getPotentialCollaborators()
237-
.then(potentialCollaborators => {
238-
let group = null;
239-
if (gid in potentialCollaborators) {
240-
group = potentialCollaborators[gid];
241-
}
242-
resolve(group);
243-
})
244-
.catch(() => resolve(null));
245-
} else {
246-
resolve(null);
247-
}
248-
});
249-
},
250-
251233
postGroup: function(name, parentGroupId = null, workspaceId = null) {
252234
const newGroupData = {
253235
name,

0 commit comments

Comments
 (0)