mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-01-16 15:38:21 +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()
|