This commit is contained in:
mynah
2019-04-03 14:08:45 -06:00
parent d72871332c
commit 1d0e23292d
4 changed files with 29 additions and 1 deletions

View File

@@ -74,7 +74,12 @@ use Dojo::Model::Users;
# =============================================================================
$r->any('/*whatever' => {whatever => ''} => sub {
my $c = shift;
my $whatever = $c->param('whatever');
$c->stash(layout=>'clean');
$c->render(template=>'home/not_found');
});
}
1;