From 34d5ee25c5e25c8a7f1e89b63480f269ebf7c476 Mon Sep 17 00:00:00 2001 From: Graham Knop Date: Sat, 26 Oct 2024 12:08:50 +0200 Subject: [PATCH] contributors: only route with no parameters Fixes #3212 --- lib/MetaCPAN/Web/Controller/About.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/MetaCPAN/Web/Controller/About.pm b/lib/MetaCPAN/Web/Controller/About.pm index ec6714d40ba..d33d6c739a5 100644 --- a/lib/MetaCPAN/Web/Controller/About.pm +++ b/lib/MetaCPAN/Web/Controller/About.pm @@ -19,7 +19,7 @@ sub about : Path : Args(0) { my ( $self, $c ) = @_; } -sub contributors : Local : Args(0) { +sub contributors : Local : Args(0) : Query() { my ( $self, $c ) = @_; my $contributors = $c->model('GitHub')