mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-07-13 12:06:35 +00:00
7 lines
155 B
Python
7 lines
155 B
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
from django.dispatch import Signal
|
|
|
|
on_app_ready = Signal()
|
|
on_system_user_auth_changed = Signal(providing_args=['system_user'])
|