diff --git a/memberportal/api_general/views.py b/memberportal/api_general/views.py index d41bb865..ae3500a6 100644 --- a/memberportal/api_general/views.py +++ b/memberportal/api_general/views.py @@ -48,7 +48,7 @@ def get(self, request): "signup": { "inductionLink": config.INDUCTION_ENROL_LINK, "requireAccessCard": config.REQUIRE_ACCESS_CARD, - "contactPageUrl": config.CONTACT_PAGE_URL, + "postInductionUrl": config.POST_INDUCTION_URL, "collectVehicleRegistrationPlate": config.COLLECT_VEHICLE_REGISTRATION_PLATE, }, "enableWebcams": config.ENABLE_WEBCAMS, @@ -703,7 +703,7 @@ def post(self, request): "induction we will go over the basic safety and operational " f"aspects of {config.SITE_OWNER}. To book in, click the link below." ) - link = config.INDUCTION_URL + link = config.POST_INDUCTION_URL btn_text = "Register for Induction" new_user.email_link(subject, title, message, link, btn_text) diff --git a/memberportal/membermatters/constance_config.py b/memberportal/membermatters/constance_config.py index 43a98c1c..0a15d77e 100644 --- a/memberportal/membermatters/constance_config.py +++ b/memberportal/membermatters/constance_config.py @@ -43,14 +43,10 @@ "The publicly accessible URL of your MemberMatters instance.", ), "MAIN_SITE_URL": ("https://membermatters.org", "The URL of your main website."), - "CONTACT_PAGE_URL": ( - "https://membermatters.org", - "The URL of your contact page (displayed during signup if " - "REQUIRE_ACCESS_CARD == False).", - ), - "INDUCTION_URL": ( + "POST_INDUCTION_URL": ( "https://eventbrite.com.au", - "The URL members should visit to book in for a site induction.", + "The URL members should visit to book in for a site induction after finishing the online induction." + " (displayed during signup if REQUIRE_ACCESS_CARD == False)", ), # Logo and favicon "SITE_LOGO": ( @@ -450,7 +446,7 @@ "Discourse SSO Protocol", ("DISCOURSE_SSO_PROTOCOL_SECRET_KEY",), ), - ("URLs", ("SITE_URL", "MAIN_SITE_URL", "CONTACT_PAGE_URL", "INDUCTION_URL")), + ("URLs", ("SITE_URL", "MAIN_SITE_URL", "POST_INDUCTION_URL")), ("Memberbucks", ("MEMBERBUCKS_MAX_TOPUP",)), ( "Images", diff --git a/src-frontend/src/components/Billing/SignupRequiredSteps.vue b/src-frontend/src/components/Billing/SignupRequiredSteps.vue index 7c37dee9..7c7d3c1d 100644 --- a/src-frontend/src/components/Billing/SignupRequiredSteps.vue +++ b/src-frontend/src/components/Billing/SignupRequiredSteps.vue @@ -145,7 +145,7 @@