mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-01-14 12:06:23 +00:00
* pref: 修改 activity log * perf: 优化 acitivity * pref: 修改 activity * fix: 修复一些运行问题 * fix: app.py 中添加 tasks import * fix: 添加 activity_callback * fix: 添加 execute_account_backup_plan activity_callback * fix: 添加 activity_callback -> gather_asset_accounts * fix: 对 celery 任务添加 activity_callback 回调 * fix: 修改翻译 --------- Co-authored-by: ibuler <ibuler@qq.com> Co-authored-by: jiangweidong <weidong.jiang@fit2cloud.com> Co-authored-by: Bai <baijiangjie@gmail.com>
19 lines
416 B
Python
19 lines
416 B
Python
from __future__ import unicode_literals
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class AssetsConfig(AppConfig):
|
|
name = 'assets'
|
|
verbose_name = _('App assets')
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
|
|
def ready(self):
|
|
super().ready()
|
|
from . import signal_handlers
|
|
from . import tasks
|
|
|