Vote::Controller::Root - Root Controller for Vote


Vote documentation Contained in the Vote distribution.

Index


Code Index:

NAME

Top

Vote::Controller::Root - Root Controller for Vote

DESCRIPTION

Top

[enter your description here]

METHODS

Top

default

end

Attempt to render a view, if needed.

AUTHOR

Top

Thauvin Olivier

LICENSE

Top

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;