diff --git a/docs/plugins/examples.rst b/docs/plugins/examples.rst index bb446c6..615db93 100644 --- a/docs/plugins/examples.rst +++ b/docs/plugins/examples.rst @@ -45,16 +45,21 @@ Enable Google Analytics from tutor import hooks - hooks.Filters.ENV_PATCHES.add_item( - ( - "openedx-common-settings", - """ - # googleanalytics special settings - GOOGLE_ANALYTICS_ACCOUNT = "UA-your-account" - GOOGLE_ANALYTICS_TRACKING_ID = "UA-your-tracking-id" - """ - ) - ) + hooks.Filters.ENV_PATCHES.add_items([ + ( + "openedx-common-settings", + "GOOGLE_ANALYTICS_4_ID = 'MY-MEASUREMENT-ID'" + ), + ( + "mfe-lms-common-settings", + "MFE_CONFIG['GOOGLE_ANALYTICS_4_ID'] = 'MY-MEASUREMENT-ID'" + ), + ]) + +.. note:: + Please be aware that as of May 2023 Google Analytics support has been upgraded from Google Universal Analytics to Google Analytics 4 and you may need to update your configuration as mentioned in the `Open edX docs `__. + + Enable SAML authentication ==========================