diff options
author | Matthew Somerville <matthew@mysociety.org> | 2012-05-25 17:04:20 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2012-05-25 17:04:20 +0100 |
commit | 7f4279e44fa11aa2aa4a5f95b50c9e16d1d6e9e3 (patch) | |
tree | 94b34023c9d5d35e524233b16dfb5faaf6a6de2d /perllib/FixMyStreet/Cobrand/Bromley.pm | |
parent | eb4883cdf10c73d8985a1cd3c8eae3df7d13a34f (diff) |
Bromley details in cobrand.
Diffstat (limited to 'perllib/FixMyStreet/Cobrand/Bromley.pm')
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Bromley.pm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Bromley.pm b/perllib/FixMyStreet/Cobrand/Bromley.pm index 369e15ff0..d09937ac2 100644 --- a/perllib/FixMyStreet/Cobrand/Bromley.pm +++ b/perllib/FixMyStreet/Cobrand/Bromley.pm @@ -11,6 +11,10 @@ sub council_area { return 'Bromley'; } sub council_name { return 'Bromley Council'; } sub council_url { return 'bromley'; } +sub base_url { + 'https://fix.bromley.gov.uk'; +} + sub path_to_web_templates { my $self = shift; return [ @@ -68,5 +72,13 @@ sub process_extras { $self->SUPER::process_extras( @_, [ 'first_name', 'last_name' ] ); } +sub contact_email { + my $self = shift; + my $type = shift || ''; + return join( '@', 'info', 'bromley.gov.uk' ) if $type eq 'contact'; + return $self->next::method(); +} +sub contact_name { 'Bromley Council (do not reply)'; } + 1; |