From e95f590e43ebad3118ffc2ea2419f43fe31c9b1e Mon Sep 17 00:00:00 2001 From: Juraj Hilje Date: Wed, 4 Sep 2024 14:35:53 +0200 Subject: [PATCH] feat(shortcuts): update AppDelegate.swift --- IVPNClient/AppDelegate.swift | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/IVPNClient/AppDelegate.swift b/IVPNClient/AppDelegate.swift index 1753b0197..f93d4a8c7 100644 --- a/IVPNClient/AppDelegate.swift +++ b/IVPNClient/AppDelegate.swift @@ -439,3 +439,12 @@ extension AppDelegate: PurchaseManagerDelegate { } } + +enum UserActivityType { + static let Connect = "net.ivpn.clients.ios.Connect" + static let Disconnect = "net.ivpn.clients.ios.Disconnect" + static let AntiTrackerEnable = "net.ivpn.clients.ios.AntiTracker.enable" + static let AntiTrackerDisable = "net.ivpn.clients.ios.AntiTracker.disable" + static let CustomDNSEnable = "net.ivpn.clients.ios.CustomDNS.enable" + static let CustomDNSDisable = "net.ivpn.clients.ios.CustomDNS.disable" +}