summaryrefslogtreecommitdiff
path: root/Hutch/App
diff options
context:
space:
mode:
Diffstat (limited to 'Hutch/App')
-rw-r--r--Hutch/App/AppStorageKeys.swift1
-rw-r--r--Hutch/App/RootView.swift3
2 files changed, 4 insertions, 0 deletions
diff --git a/Hutch/App/AppStorageKeys.swift b/Hutch/App/AppStorageKeys.swift
index eaf54f0..9a97657 100644
--- a/Hutch/App/AppStorageKeys.swift
+++ b/Hutch/App/AppStorageKeys.swift
@@ -9,6 +9,7 @@ enum AppStorageKeys {
static let systemStatusSnapshotCache = "systemStatusSnapshotCache"
static let systemStatusIncidentCache = "systemStatusIncidentCache"
static let homeProjectsExpanded = "homeProjectsExpanded"
+ static let pinnedHomeProjects = "pinnedHomeProjects"
static let homeAssignedTicketsExpanded = "homeAssignedTicketsExpanded"
static let homeBuildsExpanded = "homeBuildsExpanded"
static let buildsAutoRefreshInterval = "buildsAutoRefreshInterval"
diff --git a/Hutch/App/RootView.swift b/Hutch/App/RootView.swift
index baca7a7..9e91a71 100644
--- a/Hutch/App/RootView.swift
+++ b/Hutch/App/RootView.swift
@@ -302,6 +302,7 @@ enum MoreDestination: Hashable {
enum MoreRoute: Hashable {
case lookup
+ case projects
case lists
case pastes
case profile
@@ -320,6 +321,8 @@ private struct MoreNavigationRoot: View {
switch route {
case .lookup:
LookupView()
+ case .projects:
+ ProjectsListView()
case .lists:
MailingListListView()
case .pastes: