From 498333de558f1e7a7b0ca6baab571061c176bb59 Mon Sep 17 00:00:00 2001 From: thriuin Date: Tue, 8 Aug 2023 14:52:59 -0400 Subject: [PATCH] OPEN-2707: Make sure the GA4 tag is passed to the RAMP viewer --- ramp/views.py | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ramp/views.py b/ramp/views.py index 5e0aa67..6ff7d67 100644 --- a/ramp/views.py +++ b/ramp/views.py @@ -58,7 +58,7 @@ def get(self, request: HttpRequest, lang='en', keys=''): "ADOBE_ANALYTICS_URL": settings.ADOBE_ANALYTICS_URL, "GOOGLE_ANALYTICS_GTM_ID": settings.GOOGLE_ANALYTICS_GTM_ID, "GOOGLE_ANALYTICS_PROPERTY_ID": settings.GOOGLE_ANALYTICS_PROPERTY_ID, - + "GOOGLE_ANALYTICS_GA4_ID": settings.GOOGLE_ANALYTICS_GA4_ID, } # Get the configured RAMP URLs diff --git a/requirements.txt b/requirements.txt index 1f8a337..58a65d3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -24,5 +24,5 @@ Unidecode==1.3.6 uWSGI==2.0.19.1; sys_platform == 'linux' #git+https://github.com/thriuin/SolrClient.git@master -redis==3.5.4 # not directly required, but cannot use the latest as suggested by Snyk due to incompatability with django-redis-cache +redis==3.5.3 # not directly required, but cannot use the latest as suggested by Snyk due to incompatability with django-redis-cache setuptools>=65.5.1 # not directly required, pinned by Snyk to avoid a vulnerability