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 dbc7f68 commit 4534f42Copy full SHA for 4534f42
services/static-webserver/client/source/class/osparc/dashboard/StudyBrowser.js
@@ -773,6 +773,17 @@ qx.Class.define("osparc.dashboard.StudyBrowser", {
773
const key = osparc.utils.Utils.snakeToCamel(snakeKey);
774
urlParams[key] = value === "null" ? null : value;
775
}
776
+
777
+ // keep this until the backend implements it
778
+ switch (this.getCurrentContext()) {
779
+ case "templates":
780
+ urlParams.accessRights = "non-public";
781
+ break;
782
+ case "public":
783
+ requestParams.accessRights = "public";
784
785
+ }
786
787
const contextChanged = this.__didContextChange(urlParams);
788
if (
789
!contextChanged &&
0 commit comments