jumpserver/apps/authentication/signals.py

8 lines
151 B
Python
Raw Normal View History

from django.dispatch import Signal
2023-07-24 03:52:25 +00:00
post_auth_success = Signal()
post_auth_failed = Signal()
2023-07-24 03:52:25 +00:00
user_auth_success = Signal()
user_auth_failed = Signal()