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 0x7c9cf0e36090; 'after-authorize'>¶
Emitted when the user is authenticated.
- flask_oidc.signals.after_logout = <blinker.base.NamedSignal object at 0x7c9cf0e8c050; 'after-logout'>¶
Emitted after the user is logged out.
- flask_oidc.signals.before_authorize = <blinker.base.NamedSignal object at 0x7c9cf0e36510; 'before-authorize'>¶
Emitted when the user is redirected back from the identity provider.
- flask_oidc.signals.before_login_redirect = <blinker.base.NamedSignal object at 0x7c9cf0e471e0; 'before-login-redirect'>¶
Emitted before the user is redirected to the identity provider.
- flask_oidc.signals.before_logout = <blinker.base.NamedSignal object at 0x7c9cf0e7bee0; 'before-logout'>¶
Emitted before the user is logged out.