diff options
Diffstat (limited to 'perllib/FixMyStreet/Cobrand/Hounslow.pm')
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Hounslow.pm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Hounslow.pm b/perllib/FixMyStreet/Cobrand/Hounslow.pm index fffaf52e9..2fc949546 100644 --- a/perllib/FixMyStreet/Cobrand/Hounslow.pm +++ b/perllib/FixMyStreet/Cobrand/Hounslow.pm @@ -64,7 +64,10 @@ sub categories_restriction { # cobrand, not the email categories from FMS.com. We've set up the # Email categories with a devolved send_method, so can identify Open311 # categories as those which have a blank send_method. - return $rs->search( { 'me.send_method' => undef, 'body.name' => 'Hounslow Borough Council' } ); + return $rs->search({ + 'me.send_method' => undef, + 'body.name' => [ 'Hounslow Borough Council', 'Highways England' ], + }); } sub report_sent_confirmation_email { 'external_id' } |