Skip to content
Snippets Groups Projects
Commit 8fe271e8 authored by juanf's avatar juanf
Browse files

SSDM-4309 : User manager hidden for non admins

SVN: 37229
parent a90a9607
No related branches found
No related tags found
No related merge requests found
...@@ -96,6 +96,7 @@ $.extend(DefaultProfile.prototype, { ...@@ -96,6 +96,7 @@ $.extend(DefaultProfile.prototype, {
} }
} }
this.isAdmin = false;
this.searchDomains = [ { "@id" : -1, "@type" : "GobalSearch", label : "Global", name : "global"}]; this.searchDomains = [ { "@id" : -1, "@type" : "GobalSearch", label : "Global", name : "global"}];
this.inventorySpaces = ["MATERIALS", "METHODS"]; //"STOCK_CATALOG" this.inventorySpaces = ["MATERIALS", "METHODS"]; //"STOCK_CATALOG"
this.inventorySpacesReadOnly = []; //"STOCK_ORDERS" this.inventorySpacesReadOnly = []; //"STOCK_ORDERS"
...@@ -722,6 +723,14 @@ $.extend(DefaultProfile.prototype, { ...@@ -722,6 +723,14 @@ $.extend(DefaultProfile.prototype, {
}); });
} }
this.initIsAdmin = function(callback) {
var _this = this;
this.serverFacade.listPersons(function(data) {
_this.isAdmin = !(data.error);
callback();
});
}
// //
// Initializes // Initializes
// //
...@@ -732,7 +741,9 @@ $.extend(DefaultProfile.prototype, { ...@@ -732,7 +741,9 @@ $.extend(DefaultProfile.prototype, {
_this.initVocabulariesForSampleTypes(function() { _this.initVocabulariesForSampleTypes(function() {
_this.initSearchDomains(function() { _this.initSearchDomains(function() {
_this.initDirectLinkURL(function() { _this.initDirectLinkURL(function() {
callbackWhenDone(); _this.initIsAdmin(function() {
callbackWhenDone();
});
}); });
}); });
}); });
......
...@@ -253,7 +253,7 @@ function SideMenuWidgetView(sideMenuWidgetController, sideMenuWidgetModel) { ...@@ -253,7 +253,7 @@ function SideMenuWidgetView(sideMenuWidgetController, sideMenuWidgetModel) {
treeModelUtils.push({ title : "Storage Manager", entityType: "STORAGE_MANAGER", key : "STORAGE_MANAGER", folder : false, lazy : false, view : "showStorageManager" }); treeModelUtils.push({ title : "Storage Manager", entityType: "STORAGE_MANAGER", key : "STORAGE_MANAGER", folder : false, lazy : false, view : "showStorageManager" });
} }
if(profile.mainMenu.showUserManager) { if(profile.mainMenu.showUserManager && profile.isAdmin) {
treeModelUtils.push({ title : "User Manager", entityType: "USER_MANAGER", key : "USER_MANAGER", folder : false, lazy : false, view : "showUserManagerPage", icon : "fa fa-users" }); treeModelUtils.push({ title : "User Manager", entityType: "USER_MANAGER", key : "USER_MANAGER", folder : false, lazy : false, view : "showUserManagerPage", icon : "fa fa-users" });
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment