mirror of https://github.com/apache/cloudstack.git
Add placeholder network ACL list view
This commit is contained in:
parent
6ac4f79397
commit
df0919bef5
|
|
@ -283,9 +283,24 @@
|
|||
privateGateways: function() {
|
||||
return cloudStack.vpc.gateways.listView()
|
||||
},
|
||||
|
||||
// Public IP Addresses
|
||||
publicIPs: function() {
|
||||
return cloudStack.vpc.ipAddresses.listView()
|
||||
}
|
||||
},
|
||||
|
||||
// Network ACL lists
|
||||
networkACLLists: {
|
||||
listView: {
|
||||
fields: {
|
||||
name: { label: 'label.name' },
|
||||
total: { label: 'label.total' }
|
||||
},
|
||||
dataProvider: function(args) {
|
||||
args.response.success({ data: [] });
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
routerDetailView: function() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue