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

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