mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-05-17 20:40:00 +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>
16 lines
348 B
Python
16 lines
348 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class AuthenticationConfig(AppConfig):
|
|
name = 'authentication'
|
|
verbose_name = _('Authentication')
|
|
|
|
def ready(self):
|
|
from . import signal_handlers
|
|
from . import notifications
|
|
from . import tasks
|
|
|
|
super().ready()
|
|
|