source: LATMOS-Accounts-Web/lib/LATMOS/Accounts/Web/Controller/Root.pm @ 104

Last change on this file since 104 was 104, checked in by nanardon, 15 years ago
  • start User controller
File size: 811 bytes
Line 
1package LATMOS::Accounts::Web::Controller::Root;
2
3use strict;
4use warnings;
5use base 'LATMOS::Accounts::Web::Controller';
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#
11__PACKAGE__->config->{namespace} = '';
12
13=head1 NAME
14
15LATMOS::Accounts::Web::Controller::Root - Root Controller for LATMOS::Accounts::Web
16
17=head1 DESCRIPTION
18
19[enter your description here]
20
21=head1 METHODS
22
23=cut
24
25=head2 default
26
27=cut
28
29sub default : Private {
30    my ( $self, $c ) = @_;
31
32}
33
34=head2 end
35
36Attempt to render a view, if needed.
37
38=cut 
39
40sub end : ActionClass('RenderView') {}
41
42=head1 AUTHOR
43
44Thauvin Olivier
45
46=head1 LICENSE
47
48This library is free software, you can redistribute it and/or modify
49it under the same terms as Perl itself.
50
51=cut
52
531;
Note: See TracBrowser for help on using the repository browser.