blob: 42a0ed18e95ebe825bdcdcb51e91c7b34654e53a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
package FixMyStreet::App::Controller::About;
use Moose;
use namespace::autoclean;
BEGIN { extends 'Catalyst::Controller'; }
=head1 NAME
FixMyStreet::App::Controller::About - Catalyst Controller
=head1 DESCRIPTION
Catalyst Controller.
=head1 METHODS
=cut
=head2 index
=cut
sub index : Path : Args(0) {
my ( $self, $c ) = @_;
# don't need to do anything here - should just pass through.
}
__PACKAGE__->meta->make_immutable;
1;
|