From a81f1e55069d42edd4db90a52d0ed35092045f89 Mon Sep 17 00:00:00 2001 From: Matthew Somerville Date: Mon, 9 Oct 2023 13:53:14 +0100 Subject: [PATCH] [Waste] Add small items bin day bypass. --- perllib/FixMyStreet/App/Controller/Waste.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/perllib/FixMyStreet/App/Controller/Waste.pm b/perllib/FixMyStreet/App/Controller/Waste.pm index 82094f4fc87..524499941f2 100644 --- a/perllib/FixMyStreet/App/Controller/Waste.pm +++ b/perllib/FixMyStreet/App/Controller/Waste.pm @@ -136,6 +136,7 @@ sub redirect_to_id : Private { $uri .= '/report' if $type eq 'report'; $uri .= '/garden_check' if $type eq 'garden'; $uri .= '/bulky' if $type eq 'bulky'; + $uri .= '/small_items' if $type eq 'small_items'; $c->res->redirect($uri); $c->detach; }