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 717cc90 commit 42e32a1Copy full SHA for 42e32a1
services/static-webserver/client/source/class/osparc/store/Groups.js
@@ -158,6 +158,15 @@ qx.Class.define("osparc.store.Groups", {
158
return Object.keys(this.getOrganizations());
159
},
160
161
+ getAllMyGroupIds: function() {
162
+ return [
163
+ this.getMyGroupId(),
164
+ ...this.getOrganizationIds().map(gId => parseInt(gId)),
165
+ this.getEveryoneProductGroup().getGroupId(),
166
+ this.getEveryoneGroup().getGroupId(),
167
+ ]
168
+ },
169
+
170
getGroup: function(groupId) {
171
const groups = [];
172
0 commit comments