This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
Foodloop-Server/lib/Pear/LocalLoop/Controller/Root.pm

18 lines
200 B
Perl
Raw Normal View History

package Pear::LocalLoop::Controller::Root;
use Mojo::Base 'Mojolicious::Controller';
sub index {
my $c = shift;
}
2017-04-08 12:38:54 +00:00
sub auth_logout {
my $c = shift;
$c->logout;
$c->redirect_to('/');
}
1;