diff options
author | Dave Arter <davea@mysociety.org> | 2018-08-14 16:12:48 +0100 |
---|---|---|
committer | Dave Arter <davea@mysociety.org> | 2018-08-17 11:04:19 +0100 |
commit | 3c4fdd6f60c52418e6a7382e66a55848072edad9 (patch) | |
tree | 91f77840ea8dd0538ba1540d7c5e2a7c23119548 | |
parent | 61a47b0c9e67f246c6e0132f8007a6a75d13e5e2 (diff) |
[Lincolnshire] Add admin_user_domain and base_url config
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Lincolnshire.pm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Lincolnshire.pm b/perllib/FixMyStreet/Cobrand/Lincolnshire.pm index 42103a4b4..2f31d9ac3 100644 --- a/perllib/FixMyStreet/Cobrand/Lincolnshire.pm +++ b/perllib/FixMyStreet/Cobrand/Lincolnshire.pm @@ -19,6 +19,14 @@ sub enable_category_groups { 1 } sub send_questionnaires { 0 } sub report_sent_confirmation_email { 1 } +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'; +} + sub example_places { return ( 'LN1 1YL', 'Orchard Street, Lincoln' ); } |