From fd5804a39f5a22f48fa072f95ab74171def54806 Mon Sep 17 00:00:00 2001 From: Fernando Bunn Date: Tue, 24 Sep 2024 14:22:30 +0100 Subject: [PATCH] Add origin to /apps URL (#3378) Task/Issue URL: https://app.asana.com/0/414235014887631/1208314251851762/f **Description**: Add origin to /apps URL --- Core/AppURLs.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/AppURLs.swift b/Core/AppURLs.swift index e07d771f2a..56542c2066 100644 --- a/Core/AppURLs.swift +++ b/Core/AppURLs.swift @@ -35,7 +35,7 @@ public extension URL { static let emailProtectionSupportLink = URL(string: AppDeepLinkSchemes.quickLink.appending("\(ddg.host!)/email/settings/support"))! static let emailProtectionHelpPageLink = URL(string: AppDeepLinkSchemes.quickLink.appending("\(ddg.host!)/duckduckgo-help-pages/email-protection/what-is-duckduckgo-email-protection/"))! static let aboutLink = URL(string: AppDeepLinkSchemes.quickLink.appending("\(ddg.host!)/about"))! - static let apps = URL(string: AppDeepLinkSchemes.quickLink.appending("\(ddg.host!)/apps"))! + static let apps = URL(string: AppDeepLinkSchemes.quickLink.appending("\(ddg.host!)/apps?origin=funnel_app_ios"))! static let searchSettings = URL(string: AppDeepLinkSchemes.quickLink.appending("\(ddg.host!)/settings"))! static let autofillHelpPageLink = URL(string: AppDeepLinkSchemes.quickLink.appending("\(ddg.host!)/duckduckgo-help-pages/sync-and-backup/password-manager-security/"))!