From 47b55a7dc73c3018cf7fbda9e03efc3ab3110b71 Mon Sep 17 00:00:00 2001 From: Jonathan Cobb Date: Thu, 19 Dec 2019 12:51:03 -0500 Subject: [PATCH] verifications templates working properly --- src/_helpers/api-util.js | 1 - src/_helpers/router.js | 1 + src/_store/account.module.js | 1 - src/account/profile/PolicyPage.vue | 2 +- 4 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/_helpers/api-util.js b/src/_helpers/api-util.js index 958de69..aa31100 100644 --- a/src/_helpers/api-util.js +++ b/src/_helpers/api-util.js @@ -29,7 +29,6 @@ export function getWithAuth() { } function entityWithAuth(method, obj) { - console.log("entityWithAuth("+method+"): obj="+obj+" (type="+(typeof obj)+")"); if (typeof obj === 'undefined' || obj === null || obj === 'undefined') { return { method: method, diff --git a/src/_helpers/router.js b/src/_helpers/router.js index 6134459..54ffff2 100644 --- a/src/_helpers/router.js +++ b/src/_helpers/router.js @@ -62,6 +62,7 @@ export const router = new Router({ { path: '/networks/:uuid', component: NetworkPage } ] }, + { path: '/action', component: ActionPage }, { path: '/register', component: RegisterPage }, { path: '/login', component: LoginPage }, { path: '/logout', component: LoginPage }, diff --git a/src/_store/account.module.js b/src/_store/account.module.js index f194e6e..db262ac 100644 --- a/src/_store/account.module.js +++ b/src/_store/account.module.js @@ -17,7 +17,6 @@ const actions = { user => { commit('loginSuccess', user); const landing = getLandingPage(); - console.log('getLandingPage returned: '+JSON.stringify(landing)); if (landing === null) { router.push('/'); } else { diff --git a/src/account/profile/PolicyPage.vue b/src/account/profile/PolicyPage.vue index 2764075..b77c22d 100644 --- a/src/account/profile/PolicyPage.vue +++ b/src/account/profile/PolicyPage.vue @@ -532,7 +532,7 @@ }, created () { this.getPolicyByUuid({uuid: this.currentUser.uuid, messages: this.messages, errors: this.errors}); - console.log('PolicyPage.created: $route.params='+JSON.stringify(this.$route.query)); + // console.log('PolicyPage.created: $route.params='+JSON.stringify(this.$route.query)); if (this.$route.query.action) { this.inboundAction = { actionType: this.$route.query.action