Catalyst-Plugin-Authentication

 view release on metacpan or  search on metacpan

lib/Catalyst/Plugin/Authentication.pm  view on Meta::CPAN

        my $realm = $c->get_auth_realm($c->_user->auth_realm);

        # used to call $realm->save_user_in_session
        $realm->persist_user($c, $c->user);
    }
}


## this was a short lived method to update user information -
## you should use persist_user instead.
sub update_user_in_session {
    my $c = shift;

    return $c->persist_user;
}

sub logout {
    my $c = shift;

    $c->user(undef);

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 0.978 second using v1.00-cache-2.02-grep-82fe00e-cpan-4673cadbf75 )