aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/Cobrand/WestBerkshire.pm
blob: e13d701a6348f6fb5d92a561d36f9400de0c2fec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package FixMyStreet::Cobrand::WestBerkshire;
use base 'FixMyStreet::Cobrand::UK';

use strict;
use warnings;

sub council_area_id { 2619 }

# non standard west berks end points
sub open311_pre_send {
    my ($self, $row, $open311) = @_;
    $open311->endpoints( { services => 'Services', requests => 'Requests' } );
}

1;