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/Views/More/MoreView.swift | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Hutch/Views/More') diff --git a/Hutch/Views/More/MoreView.swift b/Hutch/Views/More/MoreView.swift index 001a9d6..9c5cf92 100644 --- a/Hutch/Views/More/MoreView.swift +++ b/Hutch/Views/More/MoreView.swift @@ -14,6 +14,10 @@ struct MoreView: View { var body: some View { List { Section { + NavigationLink(value: MoreRoute.lookup) { + Label("Look Up", systemImage: "magnifyingglass") + } + NavigationLink(value: MoreRoute.lists) { Label("Mailing Lists", systemImage: "list.bullet.rectangle") } -- cgit v1.2.3