mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-07-02 15:08:22 +00:00
7 lines
125 B
Python
7 lines
125 B
Python
from django.dispatch import Signal
|
|
|
|
post_auth_success = Signal()
|
|
post_auth_failed = Signal()
|
|
|
|
backend_auth_failed = Signal()
|