diff options
| author | Christian Cleberg <[email protected]> | 2026-04-01 23:25:54 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-04-01 23:25:54 -0500 |
| commit | a83893afa086f0050c825144fa818024db4df056 (patch) | |
| tree | c11c90f50acc633d2388e9a4940a4f3e7662b2a6 /Hutch/App | |
| parent | 7fe5ec3f69211712d39f3a1dff090119340e05d9 (diff) | |
| download | hutch-a83893afa086f0050c825144fa818024db4df056.tar.gz hutch-a83893afa086f0050c825144fa818024db4df056.tar.bz2 hutch-a83893afa086f0050c825144fa818024db4df056.zip | |
feat: add Look Up screen and restrict management actions to ownersv2.8.0
Implements: https://todo.sr.ht/~ccleberg/Hutch/4
Diffstat (limited to 'Hutch/App')
| -rw-r--r-- | Hutch/App/RootView.swift | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Hutch/App/RootView.swift b/Hutch/App/RootView.swift index f0bde89..a71b247 100644 --- a/Hutch/App/RootView.swift +++ b/Hutch/App/RootView.swift @@ -263,6 +263,7 @@ enum MoreDestination: Hashable { } enum MoreRoute: Hashable { + case lookup case lists case pastes case settings @@ -275,6 +276,8 @@ private struct MoreNavigationRoot: View { MoreView() .navigationDestination(for: MoreRoute.self) { route in switch route { + case .lookup: + LookupView() case .lists: MailingListListView() case .pastes: |
