diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2018-10-08 15:01:08 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2018-10-09 11:55:37 +0100 |
commit | 67190a155ece50b95941fcfff453fe140ab1bb75 (patch) | |
tree | 152c6c4d047b2017fff396eedd9a080f2e7cb528 /perllib/FixMyStreet/Cobrand/Lewisham.pm | |
parent | 7a0e456e59041b90b527934777f449518ea54065 (diff) |
[Open311] Move send-comments cobrand specific code
Diffstat (limited to 'perllib/FixMyStreet/Cobrand/Lewisham.pm')
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Lewisham.pm | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Lewisham.pm b/perllib/FixMyStreet/Cobrand/Lewisham.pm new file mode 100644 index 000000000..325f6e833 --- /dev/null +++ b/perllib/FixMyStreet/Cobrand/Lewisham.pm @@ -0,0 +1,15 @@ +package FixMyStreet::Cobrand::Lewisham; +use base 'FixMyStreet::Cobrand::UK'; + +use strict; +use warnings; + +sub council_area_id { 2492 } + +sub open311_post_update_skip { + my ($self) = @_; + return 1; +} + +1; + |