radiopass

This commit is contained in:
mynah
2020-05-27 15:28:41 -05:00
parent 8cede80fe7
commit 45efdf7934
8 changed files with 73 additions and 7 deletions

View File

@@ -56,13 +56,15 @@ sub startup {
$logged_in->get('/radio')->to('home#radio');
# ===================
# login user grulla =
# login any temp pass=
my $usert = $r->under('/')->to('users#is_tmp');
# common grulla user
my $user = $r->under('/')->to('users#is_grulla');
$user->any('/ccast')->to('home#bcast');
# personal
my $guest = $r->under('/')->to('users#is_grulla_tmp');
$guest->any('/bcast')->to('home#bcast');
$guest->any('/radiop')->to('home#radiop');
# ===================
# admin =======================================================================