From 353ea49673b984b07c5280b9f138c03ff34b0cb3 Mon Sep 17 00:00:00 2001 From: Mark Urquhart Date: Wed, 30 Mar 2022 07:10:30 -0400 Subject: [PATCH] Correcting Page methods name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ‘destinations.methods.page_view’ should be ‘destinations.methods.page’ to match the naming convention found in destinations.yml --- src/connections/destinations/methods-compare.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/connections/destinations/methods-compare.md b/src/connections/destinations/methods-compare.md index fcbfba6682..c3fd9143ad 100644 --- a/src/connections/destinations/methods-compare.md +++ b/src/connections/destinations/methods-compare.md @@ -18,11 +18,11 @@ This page lists which [Segment methods](/docs/connections/spec/) each destinatio Alias 🏷 {% for destination in site.data.catalog.destinations.items %} -{% unless destination.methods.track == false and destination.methods.page_view == false and destination.methods.identify == false and destination.methods.group == false and destination.methods.alias == false %} +{% unless destination.methods.track == false and destination.methods.page == false and destination.methods.identify == false and destination.methods.group == false and destination.methods.alias == false %} {% if destination.status == "PUBLIC_BETA" %}ℹ️ {% endif %}**[{{ destination.display_name }}](/docs/{{ destination.url }})** {% if destination.methods.track %}✅{% else %}⬜️{% endif %} - {% if destination.methods.page_view %}✅{% else %}⬜️{% endif %} + {% if destination.methods.page %}✅{% else %}⬜️{% endif %} {% if destination.methods.identify %}✅{% else %}⬜️{% endif %} {% if destination.methods.group %}✅{% else %}⬜️{% endif %} {% if destination.methods.alias %}✅{% else %}⬜️{% endif %} @@ -34,7 +34,7 @@ This page lists which [Segment methods](/docs/connections/spec/) each destinatio #### The following destinations have no method information available: {% for destination in site.data.catalog.destinations.items %} -{% if destination.methods.track == false and destination.methods.page_view == false and destination.methods.identify == false and destination.methods.group == false and destination.methods.alias == false %} +{% if destination.methods.track == false and destination.methods.page == false and destination.methods.identify == false and destination.methods.group == false and destination.methods.alias == false %} - [{{ destination.display_name }}](/docs/{{ destination.url }}){% if destination.status == "PUBLIC_BETA" %} (beta){% endif %} {% endif %} {% endfor %}