aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet
diff options
context:
space:
mode:
authorMatthew Somerville <matthew@mysociety.org>2016-06-08 16:46:00 +0100
committerMatthew Somerville <matthew@mysociety.org>2016-06-08 16:57:53 +0100
commitb8f644666aa5d8a619a53cd02f7e376b84ff0e56 (patch)
treeae2e35c82f3e1bccfbe54ff7d491132cbcacdb02 /perllib/FixMyStreet
parent1704f119834ae6ad64cf277de0bf8b311335677b (diff)
Move some cobrands into separate repository.
Diffstat (limited to 'perllib/FixMyStreet')
-rw-r--r--perllib/FixMyStreet/Cobrand/ArreglaMiBarrio.pm10
-rw-r--r--perllib/FixMyStreet/Cobrand/FixMindelo.pm25
2 files changed, 0 insertions, 35 deletions
diff --git a/perllib/FixMyStreet/Cobrand/ArreglaMiBarrio.pm b/perllib/FixMyStreet/Cobrand/ArreglaMiBarrio.pm
deleted file mode 100644
index cc393f42e..000000000
--- a/perllib/FixMyStreet/Cobrand/ArreglaMiBarrio.pm
+++ /dev/null
@@ -1,10 +0,0 @@
-package FixMyStreet::Cobrand::ArreglaMiBarrio;
-use base 'FixMyStreet::Cobrand::Default';
-
-use utf8;
-use strict;
-use warnings;
-
-sub language_override { 'es' }
-
-1;
diff --git a/perllib/FixMyStreet/Cobrand/FixMindelo.pm b/perllib/FixMyStreet/Cobrand/FixMindelo.pm
deleted file mode 100644
index 60f69d589..000000000
--- a/perllib/FixMyStreet/Cobrand/FixMindelo.pm
+++ /dev/null
@@ -1,25 +0,0 @@
-package FixMyStreet::Cobrand::FixMindelo;
-use base 'FixMyStreet::Cobrand::Default';
-
-use strict;
-use warnings;
-
-sub country {
- return 'CV';
-}
-
-sub languages { [ 'pt-cv,Portuguese,pt_CV' ] }
-sub language_override { 'pt-cv' }
-
-sub disambiguate_location {
- return {
- country => 'cv',
- bing_country => 'Cape Verde',
- };
-}
-
-# let staff hide reports
-sub users_can_hide { 1 }
-
-1;
-