diff options
-rw-r--r-- | perllib/FixMyStreet/Cobrand/MakeMyIsland.pm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/Cobrand/MakeMyIsland.pm b/perllib/FixMyStreet/Cobrand/MakeMyIsland.pm new file mode 100644 index 000000000..ebeb15fbb --- /dev/null +++ b/perllib/FixMyStreet/Cobrand/MakeMyIsland.pm @@ -0,0 +1,14 @@ +package FixMyStreet::Cobrand::MakeMyIsland; +use base 'FixMyStreet::Cobrand::Default'; + +use strict; +use warnings; + +sub site_title { return 'MakeMyIsland'; } + +sub country { + return 'MV'; +} + +1; + |