mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-04-27 19:17:01 +00:00
8 lines
151 B
Python
8 lines
151 B
Python
from django.dispatch import Signal
|
|
|
|
post_auth_success = Signal()
|
|
post_auth_failed = Signal()
|
|
|
|
user_auth_success = Signal()
|
|
user_auth_failed = Signal()
|