diff --git a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/Profile.js b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/Profile.js index 78257b13f6a46ce9307dafcae9e0200d57e39498..9cc0bccf53926fe9a74ad30498e00ca2a2f67f2a 100644 --- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/Profile.js +++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/Profile.js @@ -237,7 +237,10 @@ $.extend(DefaultProfile.prototype, { // Jupyter integration config // this.jupyterIntegrationServerEndpoint = "https://bs-openbis-sis-dev.ethz.ch:8002"; // this.jupyterEndpoint = "https://bs-openbis-sis-dev.ethz.ch:8000/"; - + + this.settingsObjects = []; + this.isMultiGroup = false; + this.systemProperties = ["$ANNOTATIONS_STATE", "FREEFORM_TABLE_STATE"]; this.forcedDisableRTF = []; this.forceMonospaceFont = []; diff --git a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/SettingsManager.js b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/SettingsManager.js index f3fe3c59b2365ff082cf34222d08000d9a29c909..f6e7c8a52b2586f6d37094cb8a4c209a3199d6ad 100644 --- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/SettingsManager.js +++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/SettingsManager.js @@ -42,6 +42,9 @@ function SettingsManager(serverFacade) { this.loadSettingsAndApplyToProfile = function(doneCallback, profileToEditOrNull) { this.loadSettings((function(settingsObjects) { if(settingsObjects) { + // Store settings objects globally to use latter + profile.settingsObjects = settingsObjects; + profile.isMultiGroup = settingsObjects.length > 2; for(var sIdx = 0; sIdx < settingsObjects.length; sIdx++) { var settingsObject = settingsObjects[sIdx]; if (settingsObject && settingsObject.properties && (settingsObject.properties["ELN_SETTINGS"] || settingsObject.properties["$ELN_SETTINGS"])) { @@ -56,8 +59,7 @@ function SettingsManager(serverFacade) { console.log("The settings contain the following errors:"); console.log(errors); } - var isMergeGroup = settingsObjects.length > 2; - this.applySettingsToProfile(settings, (profileToEditOrNull)?profileToEditOrNull:profile, isMergeGroup); + this.applySettingsToProfile(settings, (profileToEditOrNull)?profileToEditOrNull:profile, (profile.isMultiGroup && sIdx > 0)); } } } diff --git a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/SideMenu/SideMenuWidgetView.js b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/SideMenu/SideMenuWidgetView.js index 21920ab00c8a012b3293de9613cda485a7ffe578..9d6b1a308d4cb3088f000f2536895436b6361743 100644 --- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/SideMenu/SideMenuWidgetView.js +++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/SideMenu/SideMenuWidgetView.js @@ -341,7 +341,7 @@ function SideMenuWidgetView(sideMenuWidgetController, sideMenuWidgetModel) { treeModelUtils.push({ displayName: "Storage Manager", title : storageManagerLink, entityType: "STORAGE_MANAGER", key : "STORAGE_MANAGER", folder : false, lazy : false, view : "showStorageManager" }); } - if(profile.mainMenu.showUserManager && profile.isAdmin) { + if(profile.mainMenu.showUserManager && profile.isAdmin && !profile.isMultiGroup) { var userManagerLink = _this.getLinkForNode("User Manager", "USER_MANAGER", "showUserManagerPage", null, null); treeModelUtils.push({ displayName: "User Manager", title : userManagerLink, entityType: "USER_MANAGER", key : "USER_MANAGER", folder : false, lazy : false, view : "showUserManagerPage", icon : "fa fa-users" }); }