diff options
author | Matthew Somerville <matthew@mysociety.org> | 2011-06-02 10:27:15 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2011-06-02 10:27:15 +0100 |
commit | 60da5d1d852f3cf06b04110a17ba8c0e62d62c2b (patch) | |
tree | 596eec69401942a162e6d09eb0c1e1ee48e04402 /perllib/FixMyStreet/App/Controller/Fun.pm | |
parent | 41b86381605f1cf4451e51b80b42a8a2e6046687 (diff) |
Bring static pages together in Static.pm, and add posters static page.
Diffstat (limited to 'perllib/FixMyStreet/App/Controller/Fun.pm')
-rw-r--r-- | perllib/FixMyStreet/App/Controller/Fun.pm | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Fun.pm b/perllib/FixMyStreet/App/Controller/Fun.pm deleted file mode 100644 index e5d8f9652..000000000 --- a/perllib/FixMyStreet/App/Controller/Fun.pm +++ /dev/null @@ -1,33 +0,0 @@ -package FixMyStreet::App::Controller::Fun; -use Moose; -use namespace::autoclean; - -BEGIN { extends 'Catalyst::Controller'; } - -=head1 NAME - -FixMyStreet::App::Controller::Fun - Catalyst Controller - -=head1 DESCRIPTION - -Catalyst Controller. - -=head1 METHODS - -=cut - -=head2 fun - -Show the 'fun' page. - -=cut - -sub index : Path : Args(0) { - my ( $self, $c ) = @_; - $c->stash->{template} = 'fun.html'; -} - -__PACKAGE__->meta->make_immutable; - -1; - |