flask_oidc.signals module

This module contains signals that can be connected to to hook into the login and logout process.

See the Flask documentation on signals to learn how to connect to these.

flask_oidc.signals.after_authorize = <blinker.base.NamedSignal object at 0x7fcf5484cf50; 'after-authorize'>

Emitted when the user is authenticated.

flask_oidc.signals.after_logout = <blinker.base.NamedSignal object at 0x7fcf54845440; 'after-logout'>

Emitted after the user is logged out.

flask_oidc.signals.before_authorize = <blinker.base.NamedSignal object at 0x7fcf5484cd10; 'before-authorize'>

Emitted when the user is redirected back from the identity provider.

flask_oidc.signals.before_login_redirect = <blinker.base.NamedSignal object at 0x7fcf54861710; 'before-login-redirect'>

Emitted before the user is redirected to the identity provider.

flask_oidc.signals.before_logout = <blinker.base.NamedSignal object at 0x7fcf54845390; 'before-logout'>

Emitted before the user is logged out.