diff options
author | Struan Donald <struan@exo.org.uk> | 2020-04-13 11:46:43 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2020-04-29 10:09:29 +0100 |
commit | b896b5a095137bf8f6b0fe8e35f6604387c7e877 (patch) | |
tree | cfa8504b8eecd83dfa3439d73b6e5ef0b7d9b861 | |
parent | 3c89f10b779fcecbb7453b7e0db01aaf72f9ae25 (diff) |
[EastSussex] add basic cobrand
This is required so we can use groups when fetching categories over
open311.
-rw-r--r-- | perllib/FixMyStreet/Cobrand/EastSussex.pm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/Cobrand/EastSussex.pm b/perllib/FixMyStreet/Cobrand/EastSussex.pm new file mode 100644 index 000000000..be04b75dd --- /dev/null +++ b/perllib/FixMyStreet/Cobrand/EastSussex.pm @@ -0,0 +1,9 @@ +package FixMyStreet::Cobrand::EastSussex; +use parent 'FixMyStreet::Cobrand::UK'; + +use strict; +use warnings; + +sub council_area_id { return 2224; } + +1; |