bug 12270

-Don't show user/invite management tabs for non-project-admin
This commit is contained in:
Brian Federle 2011-12-07 16:04:17 -08:00
parent 5ad44760e1
commit b55fb5fa48
1 changed files with 3 additions and 1 deletions

View File

@ -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 $('<div>').addClass('management');
};