From a83893afa086f0050c825144fa818024db4df056 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Wed, 1 Apr 2026 23:25:54 -0500 Subject: feat: add Look Up screen and restrict management actions to owners Implements: https://todo.sr.ht/~ccleberg/Hutch/4 --- Hutch/App/RootView.swift | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Hutch/App/RootView.swift') 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: -- cgit v1.2.3