aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/Cobrand/Whitelabel.pm
blob: 42a23e40f39758aa935aad66237738130cf5095e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package FixMyStreet::Cobrand::Whitelabel;
use base 'FixMyStreet::Cobrand::UKCouncils';

sub path_to_web_templates {
    my $self = shift;
    return [
        FixMyStreet->path_to( 'templates/web', $self->moniker ),
        FixMyStreet->path_to( 'templates/web/whitelabel' ),
        FixMyStreet->path_to( 'templates/web/fixmystreet-uk-councils' ),
    ];
}

1;