Add placeholder network ACL list view

This commit is contained in:
Brian Federle 2013-05-10 16:03:44 -07:00
parent 6ac4f79397
commit df0919bef5
1 changed files with 16 additions and 1 deletions

View File

@ -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() {