From 0f3b38169089cad36ce86a0b468293d1ca6c2169 Mon Sep 17 00:00:00 2001 From: Jonathan Cobb Date: Fri, 10 Jan 2020 18:58:46 -0500 Subject: [PATCH] send userId with api call to create plan --- src/account/NewNetworkPage.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/account/NewNetworkPage.vue b/src/account/NewNetworkPage.vue index ae93e89..2845848 100644 --- a/src/account/NewNetworkPage.vue +++ b/src/account/NewNetworkPage.vue @@ -444,6 +444,7 @@ } else { console.log('sending accountPlan: ' + JSON.stringify(this.accountPlan) + ' cloud/region=' + cloudRegion.cloud + '/' + cloudRegion.internalName); this.addPlanAndStartNetwork({ + userId: this.user.uuid, accountPlan: this.accountPlan, cloud: cloudRegion.cloud, region: cloudRegion.internalName, @@ -477,7 +478,6 @@ }, nearestRegions (regions) { if (regions) { - console.log('nearestRegions: received: '+regions.length+' regions'); this.regions = regions; if (this.cloudRegionUuid === null || (typeof regions.find(r => r.uuid === this.cloudRegionUuid) === 'undefined')) { this.cloudRegionUuid = regions[0].uuid;