jumpserver/apps/authentication/backends/oidc/signals.py

13 lines
295 B
Python
Raw Normal View History

"""
OpenID Connect relying party (RP) signals
=========================================
This modules defines Django signals that can be triggered during the OpenID Connect
authentication process.
"""
from django.dispatch import Signal
2023-07-24 03:52:25 +00:00
openid_create_or_update_user = Signal()