sometimes consistency is not a bad thing either.
[catagits/Catalyst-Devel.git] / share / lib / MyApp / Controller / Root.pm.tt
CommitLineData
239b5fc0 1package [% rootname %];
8662edf6 2use Moose;
3use namespace::autoclean;
239b5fc0 4
8662edf6 5BEGIN { extends 'Catalyst::Controller' }
239b5fc0 6
7#
8# Sets the actions in this controller to be registered with no prefix
9# so they function identically to actions created in MyApp.pm
10#
3e5f7783 11__PACKAGE__->config(namespace => '');
239b5fc0 12
13=head1 NAME
14
15[% rootname %] - Root Controller for [% name %]
16
17=head1 DESCRIPTION
18
19[enter your description here]
20
21=head1 METHODS
22
239b5fc0 23=head2 index
24
3d3e34a0 25The root page (/)
26
239b5fc0 27=cut
28
29sub index :Path :Args(0) {
30 my ( $self, $c ) = @_;
31
32 # Hello World
33 $c->response->body( $c->welcome_message );
34}
35
3d3e34a0 36=head2 default
37
38Standard 404 error page
39
40=cut
41
239b5fc0 42sub default :Path {
43 my ( $self, $c ) = @_;
44 $c->response->body( 'Page not found' );
45 $c->response->status(404);
46}
47
48=head2 end
49
50Attempt to render a view, if needed.
51
52=cut
53
54sub end : ActionClass('RenderView') {}
55
56=head1 AUTHOR
57
58[% author %]
59
60=head1 LICENSE
61
62This library is free software. You can redistribute it and/or modify
63it under the same terms as Perl itself.
64
65=cut
66
8662edf6 67__PACKAGE__->meta->make_immutable;
7e6d9ba3 68
691;