Updated Branches:
  refs/heads/master 48b46fce5 -> 41a383f0f

CS-15877: Fix static routes

Fix static routes not being shown when viewed as a domain admin


Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/41a383f0
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/41a383f0
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/41a383f0

Branch: refs/heads/master
Commit: 41a383f0f922daeb829f53364d5c0dac29299e30
Parents: 48b46fc
Author: Brian Federle <[email protected]>
Authored: Mon Aug 13 10:56:26 2012 -0700
Committer: Brian Federle <[email protected]>
Committed: Mon Aug 13 10:56:59 2012 -0700

----------------------------------------------------------------------
 ui/scripts/vpc.js |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/41a383f0/ui/scripts/vpc.js
----------------------------------------------------------------------
diff --git a/ui/scripts/vpc.js b/ui/scripts/vpc.js
index 1c96d88..8cd5812 100644
--- a/ui/scripts/vpc.js
+++ b/ui/scripts/vpc.js
@@ -827,7 +827,8 @@
                         $.ajax({
                           url: createURL('listStaticRoutes'),
                           data: {
-                            gatewayid: args.context.vpcGateways[0].id
+                            gatewayid: args.context.vpcGateways[0].id,
+                            listAll: true
                           },
                           success: function(json) {
                             var items = 
json.liststaticroutesresponse.staticroute;

Reply via email to