Updated Branches: refs/heads/ui-vpc-redesign 6ac4f7939 -> df0919bef
Add placeholder network ACL list view Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/df0919be Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/df0919be Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/df0919be Branch: refs/heads/ui-vpc-redesign Commit: df0919bef589bf44d23f9d9e056fe0da9a579034 Parents: 6ac4f79 Author: Brian Federle <brian.fede...@citrix.com> Authored: Fri May 10 16:03:44 2013 -0700 Committer: Brian Federle <brian.fede...@citrix.com> Committed: Fri May 10 16:03:44 2013 -0700 ---------------------------------------------------------------------- ui/scripts/vpc.js | 17 ++++++++++++++++- 1 files changed, 16 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/df0919be/ui/scripts/vpc.js ---------------------------------------------------------------------- diff --git a/ui/scripts/vpc.js b/ui/scripts/vpc.js index 7e1a8c3..a009db4 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() {