summaryrefslogtreecommitdiff
path: root/Hutch/App/AppStorageKeys.swift
blob: de3ce54f7074d3c888900ba9fdda707bd6efb082 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Shared UserDefaults key constants
enum AppStorageKeys {
    static let swipeActionsEnabled = "swipeActionsEnabled"
    static let contributionGraphsEnabled = "contributionGraphsEnabled"
    static let activeAccountID = "activeAccountID"
    static let wrapRepositoryFileLines = "wrapRepositoryFileLines"
    static let wrapPasteFileLines = "wrapPasteFileLines"
    static let lookupHistory = "lookupHistory"
    static let recentActivity = "recentActivity"
    static let scopedSearchHistory = "scopedSearchHistory"
    static let hutchStatsBaseURL = "hutchStatsBaseURL"
    static let systemStatusSnapshotCache = "systemStatusSnapshotCache"
    static let systemStatusIncidentCache = "systemStatusIncidentCache"
    static let homeProjectsExpanded = "homeProjectsExpanded"
    static let pinnedHomeProjects = "pinnedHomeProjects"
    static let pinnedHomeItems = "pinnedHomeItems"
    static let homeAssignedTicketsExpanded = "homeAssignedTicketsExpanded"
    static let homeBuildsExpanded = "homeBuildsExpanded"
    static let buildsAutoRefreshInterval = "buildsAutoRefreshInterval"
    static let buildsRepoFilter = "buildsRepoFilter"
    static let buildsLookbackDays = "buildsLookbackDays"
    static let ticketFilterState = "ticketFilterState"
    static let ticketSavedFilters = "ticketSavedFilters"
    static let appTheme = "appTheme"
    static let displayDensity = "displayDensity"
    static let debugModeEnabled = "debugModeEnabled"
    nonisolated static let homeFailedBuildLookbackDays = "homeFailedBuildLookbackDays"
}