diff options
author | Matthew Somerville <matthew@mysociety.org> | 2020-04-17 14:07:32 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2020-05-08 08:35:45 +0100 |
commit | d1622dc20c1623e3f7fb54d72d99370af796c197 (patch) | |
tree | 790277735485c4ef3514cedbed03c89c0a4d620e /perllib/FixMyStreet/App/Controller/Dashboard.pm | |
parent | ecc5a7b9ca20418f1bdb45cdc3ce5b41a11f3593 (diff) |
Extend assigned_*_only to report lists.
Shortlist buttons and extended print information
will not appear where not allowed.
Diffstat (limited to 'perllib/FixMyStreet/App/Controller/Dashboard.pm')
-rw-r--r-- | perllib/FixMyStreet/App/Controller/Dashboard.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Dashboard.pm b/perllib/FixMyStreet/App/Controller/Dashboard.pm index 833d6d6b2..52af45940 100644 --- a/perllib/FixMyStreet/App/Controller/Dashboard.pm +++ b/perllib/FixMyStreet/App/Controller/Dashboard.pm @@ -564,7 +564,8 @@ sub heatmap : Local : Args(0) { $c->stash->{children} = $children; $c->stash->{ward_hash} = { map { $_->{id} => 1 } @{$c->stash->{wards}} } if $c->stash->{wards}; - $c->forward('/reports/setup_categories_and_map'); + $c->forward('/reports/setup_categories'); + $c->forward('/reports/setup_map'); } sub heatmap_filters :Private { |