logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

CatalystX::SimpleLogin::TraitFor::Controller::Login::OpenID - allows a User to login via OpenID

Authors

       See CatalystX::SimpleLogin for authors.

Description

       Provides the "login" action with a wrapper to redirect to a page which needs authentication, from which
       the user was previously redirected. Goes hand in hand with Catalyst::ActionRole::NeedsLogin .

License

       See CatalystX::SimpleLogin for license.

perl v5.36.0                                       2022-08-28              CatalystX::Sim...::Login::OpenID(3pm)

Name

       CatalystX::SimpleLogin::TraitFor::Controller::Login::OpenID - allows a User to login via OpenID

See Also

       CatalystX::SimpleLogin::Controller::Login
       CatalystX::SimpleLogin::Form::Login

Synopsis

           package MyApp::Controller::NeedsAuth;

           sub something : Path Does('NeedsLogin') {
               # Redirects to /login if not logged in
           }

           # Turn on in config
           MyApp->config('Contoller::Login' => { traits => 'Login::OpenID' });

Wrapped Methods

login_GET
       Wrap around an openid authentication if the 'openid.mode' request parameter is set. Otherwise, use the
       default login_GET() method.

See Also