From b55fb5fa48ce4615568d7ac3f5ae4d287c7f905a Mon Sep 17 00:00:00 2001 From: Brian Federle Date: Wed, 7 Dec 2011 16:04:17 -0800 Subject: [PATCH] bug 12270 -Don't show user/invite management tabs for non-project-admin --- ui/scripts/ui-custom/projects.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ui/scripts/ui-custom/projects.js b/ui/scripts/ui-custom/projects.js index e9ce06f796b..1b341da7c71 100644 --- a/ui/scripts/ui-custom/projects.js +++ b/ui/scripts/ui-custom/projects.js @@ -23,7 +23,9 @@ } }; - if (cloudStack.context.projects) { + // Only show management tabs to owner of project + if (cloudStack.context.projects && + (cloudStack.context.projects[0].account == cloudStack.context.users[0].account)) { tabs['Users'] = function() { return $('
').addClass('management'); };