From 6fd73c9881653e4ad810d6ed291bc77044374dd7 Mon Sep 17 00:00:00 2001 From: Eric Date: Wed, 19 Mar 2025 12:50:45 -0500 Subject: [PATCH] Website: add temporary redirect for Android MDM learn more link. (#27295) Related to: https://github.com/fleetdm/fleet/issues/27290 Changes: - Added a temporary redirect for the "Learn more" link on the Android enterprise setup page. --- website/config/routes.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/config/routes.js b/website/config/routes.js index d8eec5511c..d48ceeb9b7 100644 --- a/website/config/routes.js +++ b/website/config/routes.js @@ -879,6 +879,8 @@ module.exports.routes = { 'GET /learn-more-about/certificates-query': '/tables/certificates', 'GET /learn-more-about/gitops': 'https://github.com/fleetdm/fleet-gitops/', 'GET /learn-more-about/unsigning-configuration-profiles': 'https://fleetdm.com/guides/custom-os-settings#enforce-os-settings', + // FUTURE: update the temporary redirect below to go to the documentation for connecting Android enterprise + 'GET /learn-more-about/how-to-connect-android-enterprise': (req,res)=> { return res.redirect(302, '/contact');}, // Sitemap // =============================================================================================================