From c10fa2fbd4536739b4a68e792d757063f7d4f1d1 Mon Sep 17 00:00:00 2001 From: Alexander von Gluck IV Date: Thu, 08 Jan 2026 10:10:38 -0600 Subject: [PATCH] router: Offer up summary page also at repo/summary to mimic cgit; #23 --- src/methods/repo/mod.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/methods/repo/mod.rs b/src/methods/repo/mod.rs index b7d53fe..39b762a 100644 --- a/src/methods/repo/mod.rs +++ b/src/methods/repo/mod.rs @@ -175,6 +175,11 @@ uri, child_path: None, }, + Some("summary") => ParsedUri { + action: HandlerAction::Summary, + uri, + child_path: None, + }, Some(_) => { static TREE_FINDER: LazyLock = LazyLock::new(|| memchr::memmem::Finder::new(b"/tree/")); -- gitore 0.2.3