From df0919bef589bf44d23f9d9e056fe0da9a579034 Mon Sep 17 00:00:00 2001 From: Brian Federle Date: Fri, 10 May 2013 16:03:44 -0700 Subject: [PATCH] Add placeholder network ACL list view --- ui/scripts/vpc.js | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/ui/scripts/vpc.js b/ui/scripts/vpc.js index 7e1a8c3efc8..a009db4d45f 100644 --- a/ui/scripts/vpc.js +++ b/ui/scripts/vpc.js @@ -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() {