diff options
Diffstat (limited to 'perllib/FixMyStreet')
-rw-r--r-- | perllib/FixMyStreet/Cobrand/FixMindelo.pm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/Cobrand/FixMindelo.pm b/perllib/FixMyStreet/Cobrand/FixMindelo.pm new file mode 100644 index 000000000..6f81bad84 --- /dev/null +++ b/perllib/FixMyStreet/Cobrand/FixMindelo.pm @@ -0,0 +1,25 @@ +package FixMyStreet::Cobrand::FixMindelo; +use base 'FixMyStreet::Cobrand::Default'; + +use strict; +use warnings; + + +sub country { + return 'CV'; +} + +sub language_domain { 'FixMindelo' } + +sub disambiguate_location { + return { + country => 'cv', + bing_country => 'Cape Verde', + }; +} + +# let staff hide reports +sub users_can_hide { 1 } + +1; + |