aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/App/Controller/Admin/Triage.pm
diff options
context:
space:
mode:
authorMatthew Somerville <matthew@mysociety.org>2019-11-06 19:38:33 +0000
committerMatthew Somerville <matthew@mysociety.org>2019-11-08 15:27:44 +0000
commit66f0cf322750d695b7c4e55565cfabb905e75a54 (patch)
treef007ee144f980caf6d679a202c33dd24116be272 /perllib/FixMyStreet/App/Controller/Admin/Triage.pm
parent2dbcea98a4511b8f5830244a14faaceefb5e3c91 (diff)
Factor out admin reports code to own controller.
Diffstat (limited to 'perllib/FixMyStreet/App/Controller/Admin/Triage.pm')
-rw-r--r--perllib/FixMyStreet/App/Controller/Admin/Triage.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Admin/Triage.pm b/perllib/FixMyStreet/App/Controller/Admin/Triage.pm
index 0eabd340d..428c35073 100644
--- a/perllib/FixMyStreet/App/Controller/Admin/Triage.pm
+++ b/perllib/FixMyStreet/App/Controller/Admin/Triage.pm
@@ -113,7 +113,7 @@ sub update : Private {
my $current_category = $problem->category;
my $new_category = $c->get_param('category');
- my $changed = $c->forward('/admin/report_edit_category', [ $problem, 1 ] );
+ my $changed = $c->forward('/admin/reports/edit_category', [ $problem, 1 ] );
if ( $changed ) {
$c->stash->{problem}->update( { state => 'confirmed' } );