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 1efd09c commit c384893Copy full SHA for c384893
services/static-webserver/client/source/class/osparc/store/Groups.js
@@ -97,6 +97,11 @@ qx.Class.define("osparc.store.Groups", {
97
const groupMe = this.__addToGroupsCache(resp["me"], "me");
98
const orgs = {};
99
resp["organizations"].forEach(organization => {
100
+ if (supportGroup && supportGroup.getGroupId() === organization["gid"]) {
101
+ // support group was already added to the cache, but it was missing the accessRights
102
+ // the accessRights come from the organization, update them
103
+ supportGroup.setAccessRights(organization["accessRights"]);
104
+ }
105
const org = this.__addToGroupsCache(organization, "organization");
106
orgs[org.getGroupId()] = org;
107
});
0 commit comments