mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-05-12 17:53:53 +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'])
|