mirror of https://github.com/apache/cloudstack.git
bug 12367: Show status field on invites tab
This commit is contained in:
parent
3590f2cc3f
commit
d826bc1b47
|
|
@ -36,6 +36,7 @@
|
|||
noSelect: true,
|
||||
fields: {
|
||||
'email': { edit: true, label: 'E-mail' },
|
||||
'state': { edit: 'ignore', label: 'Status' },
|
||||
'add-user': { addButton: true, label: '' }
|
||||
},
|
||||
add: {
|
||||
|
|
@ -94,7 +95,8 @@
|
|||
data: $.map(invites, function(elem) {
|
||||
return {
|
||||
id: elem.id,
|
||||
email: elem.email ? elem.email : elem.account
|
||||
email: elem.email ? elem.email : elem.account,
|
||||
state: elem.state
|
||||
};
|
||||
})
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue