krz/hutch
an ios client for sourcehut
clone: git clone https://gitbay.org/krz/hutch.git
v3.0.4: Hutch/App/AppStorageKeys.swift · raw
1// Shared UserDefaults key constants
2enum AppStorageKeys {
3 static let swipeActionsEnabled = "swipeActionsEnabled"
4 static let contributionGraphsEnabled = "contributionGraphsEnabled"
5 static let activeAccountID = "activeAccountID"
6 static let wrapRepositoryFileLines = "wrapRepositoryFileLines"
7 static let lookupHistory = "lookupHistory"
8 static let recentActivity = "recentActivity"
9 static let scopedSearchHistory = "scopedSearchHistory"
10 static let hutchStatsBaseURL = "hutchStatsBaseURL"
11 static let systemStatusSnapshotCache = "systemStatusSnapshotCache"
12 static let systemStatusIncidentCache = "systemStatusIncidentCache"
13 static let homeProjectsExpanded = "homeProjectsExpanded"
14 static let pinnedHomeProjects = "pinnedHomeProjects"
15 static let pinnedHomeItems = "pinnedHomeItems"
16 static let homeAssignedTicketsExpanded = "homeAssignedTicketsExpanded"
17 static let homeBuildsExpanded = "homeBuildsExpanded"
18 static let buildsAutoRefreshInterval = "buildsAutoRefreshInterval"
19 static let buildsRepoFilter = "buildsRepoFilter"
20 static let ticketFilterState = "ticketFilterState"
21 static let ticketSavedFilters = "ticketSavedFilters"
22 static let appTheme = "appTheme"
23 static let displayDensity = "displayDensity"
24 static let debugModeEnabled = "debugModeEnabled"
25}