From 99b03efbd643532af7ebbca35c5f664a11d43d38 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Wed, 13 May 2020 23:01:11 +0000 Subject: [PATCH] --- ayanova/src/views/ay-customize.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ayanova/src/views/ay-customize.vue b/ayanova/src/views/ay-customize.vue index b99e2453..130aa951 100644 --- a/ayanova/src/views/ay-customize.vue +++ b/ayanova/src/views/ay-customize.vue @@ -60,7 +60,7 @@ //NOTE: This is a simple form with no need for business rules or validation so stripped out any extraneous code related to all that // const FORM_KEY = "customize"; -const API_BASE_URL = "FormCustom/"; +const API_BASE_URL = "form-custom/"; export default { beforeRouteLeave(to, from, next) { //let vm = this; @@ -394,7 +394,7 @@ function ensureTemplateIsInStore(vm) { function initDataObject(vm) { //Get all the fields *available* to this form (all the fields for the object defined in AyaFormFieldDefinitions.cs as SERVER) //Note: this is not the actual customization data, just the list of fields that could be customized (or not if required mandatory) - let url = "FormFieldsDefinitions/" + vm.$route.params.formCustomTemplateKey; + let url = "form-field-definition/" + vm.$route.params.formCustomTemplateKey; return window.$gz.api.get(url).then(res => { if (res.error) { throw res.error;