| Vote documentation | Contained in the Vote distribution. |
Vote::Controller::Root - Root Controller for Vote
[enter your description here]
Attempt to render a view, if needed.
Thauvin Olivier
This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself or CeCILL.
| Vote documentation | Contained in the Vote distribution. |
package Vote::Controller::Root; use strict; use warnings; use base 'Catalyst::Controller'; # # Sets the actions in this controller to be registered with no prefix # so they function identically to actions created in MyApp.pm # __PACKAGE__->config->{namespace} = '';
sub begin : Private { my ( $self, $c ) = @_; $c->model('Vote')->db->rollback; } sub default : Private { my ( $self, $c ) = @_; $c->stash->{page}{title} = 'Epoll ' . $Vote::VERSION; }
sub end : ActionClass('RenderView') {}
1;