mirror of https://github.com/apache/cloudstack.git
bug 12270
-Don't show user/invite management tabs for non-project-admin
This commit is contained in:
parent
5ad44760e1
commit
b55fb5fa48
|
|
@ -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');
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue