aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet
diff options
context:
space:
mode:
Diffstat (limited to 'perllib/FixMyStreet')
-rw-r--r--perllib/FixMyStreet/Cobrand/FixMindelo.pm25
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;
+