Skip to content

Commit

Permalink
[Brent] Adjust time pins shown on map.
Browse files Browse the repository at this point in the history
  • Loading branch information
dracos committed Sep 17, 2024
1 parent 18d042a commit 17e5b9b
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions perllib/FixMyStreet/Cobrand/Brent.pm
Original file line number Diff line number Diff line change
Expand Up @@ -400,13 +400,17 @@ sub oidc_config {
return $cfg;
}

=head2 Only show reports on map for last 3 months
Brent only show 3 months of report history on the map rather than default 6 months
=item * Show open reports for 3 months, closed/fixed for 1 month
=cut

sub report_age { '3 months' }
sub report_age {
return {
open => '3 months',
closed => '1 month',
fixed => '1 month',
};
}

=head2 dashboard_export_problems_add_columns
Expand Down

0 comments on commit 17e5b9b

Please sign in to comment.