jumpserver/apps/assets/signals.py

7 lines
155 B
Python
Raw Normal View History

2017-12-12 04:19:45 +00:00
# -*- coding: utf-8 -*-
#
2017-12-13 09:21:08 +00:00
from django.dispatch import Signal
2017-12-12 04:19:45 +00:00
on_app_ready = Signal()
2017-12-13 09:21:08 +00:00
on_system_user_auth_changed = Signal(providing_args=['system_user'])