summaryrefslogtreecommitdiffhomepage
path: root/ios/MullvadVPN/Classes
diff options
context:
space:
mode:
authorJon Petersson <jon.petersson@mullvad.net>2025-01-22 16:39:21 +0100
committerJon Petersson <jon.petersson@mullvad.net>2025-01-22 16:39:21 +0100
commita1b47c23a9532abc0f51fc94de481b0528afb9fb (patch)
tree8c93aed3d2fc5540e963bc6b02dbdd8549268429 /ios/MullvadVPN/Classes
parent060839d420a9cf222b49fe4932730a98fd5b1434 (diff)
parent5f9315b46dc7a364bc20d40420c2e0feb34a2d6c (diff)
downloadmullvadvpn-a1b47c23a9532abc0f51fc94de481b0528afb9fb.tar.xz
mullvadvpn-a1b47c23a9532abc0f51fc94de481b0528afb9fb.zip
Merge branch 'add-in-app-notification-banner-for-changelog-ios-989'
Diffstat (limited to 'ios/MullvadVPN/Classes')
-rw-r--r--ios/MullvadVPN/Classes/AppRoutes.swift8
1 files changed, 3 insertions, 5 deletions
diff --git a/ios/MullvadVPN/Classes/AppRoutes.swift b/ios/MullvadVPN/Classes/AppRoutes.swift
index 9f2d6a92b1..a7753589ba 100644
--- a/ios/MullvadVPN/Classes/AppRoutes.swift
+++ b/ios/MullvadVPN/Classes/AppRoutes.swift
@@ -93,7 +93,7 @@ enum AppRoute: AppRouteProtocol {
case selectLocation
/**
- Changelog route.
+ Changelog standalone route (not subsetting).
*/
case changelog
@@ -110,7 +110,7 @@ enum AppRoute: AppRouteProtocol {
var isExclusive: Bool {
switch self {
- case .account, .settings, .changelog, .alert:
+ case .account, .settings, .alert:
return true
default:
return false
@@ -129,13 +129,11 @@ enum AppRoute: AppRouteProtocol {
switch self {
case .tos, .login, .main, .revoked, .outOfTime, .welcome:
return .primary
- case .changelog:
- return .changelog
case .selectLocation:
return .selectLocation
case .account:
return .account
- case .settings, .daita:
+ case .settings, .daita, .changelog:
return .settings
case let .alert(id):
return .alert(id)