diff options
author | Dave Arter <davea@mysociety.org> | 2018-08-17 10:59:54 +0100 |
---|---|---|
committer | Dave Arter <davea@mysociety.org> | 2018-08-17 11:41:22 +0100 |
commit | b4ac7b676de16eb6acee9ac21a42cd11f759c7b7 (patch) | |
tree | fe61be9a6ba8fda64fecdfeae6a2833a4c0021c1 | |
parent | 3c4fdd6f60c52418e6a7382e66a55848072edad9 (diff) |
[Lincolnshire] Add contact email address
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Lincolnshire.pm | 8 | ||||
-rw-r--r-- | templates/web/lincolnshire/contact/_footer.html | 1 |
2 files changed, 8 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Lincolnshire.pm b/perllib/FixMyStreet/Cobrand/Lincolnshire.pm index 2f31d9ac3..c2c66136b 100644 --- a/perllib/FixMyStreet/Cobrand/Lincolnshire.pm +++ b/perllib/FixMyStreet/Cobrand/Lincolnshire.pm @@ -24,9 +24,15 @@ sub admin_user_domain { 'lincolnshire.gov.uk' } sub base_url { my $self = shift; return $self->next::method() if FixMyStreet->config('STAGING_SITE'); - return 'https://lincolnshire.fixmystreet.com'; + return 'https://fixmystreet.lincolnshire.gov.uk'; } +sub contact_email { + my $self = shift; + return join( '@', 'confirm_support', 'lincolnshire.gov.uk' ); +} + + sub example_places { return ( 'LN1 1YL', 'Orchard Street, Lincoln' ); } diff --git a/templates/web/lincolnshire/contact/_footer.html b/templates/web/lincolnshire/contact/_footer.html new file mode 100644 index 000000000..7647f5df5 --- /dev/null +++ b/templates/web/lincolnshire/contact/_footer.html @@ -0,0 +1 @@ +[%# Disables display of email address on contact form. %]
\ No newline at end of file |