mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-05-17 20:40:00 +00:00
6 lines
176 B
Python
6 lines
176 B
Python
from django.dispatch import Signal
|
|
|
|
|
|
post_auth_success = Signal(providing_args=('user', 'request'))
|
|
post_auth_failed = Signal(providing_args=('username', 'request', 'reason'))
|