Files
django-vue3-admin/backend/plugins/code_info/settings.py
liqiang ab1e0268d1 提交
2025-09-19 10:49:07 +08:00

23 lines
874 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
from application import settings
# ================================================= #
# ***************** 插件配置区开始 *******************
# ================================================= #
# 路由配置
plugins_url_patterns = [
{"re_path": r'api/code_info/', "include": "code_info.urls"},
]
# app 配置
apps = ['code_info']
# 租户模式中public模式共享app配置
tenant_shared_apps = ['code_info']
# ================================================= #
# ******************* 插件配置区结束 *****************
# ================================================= #
# ********** 赋值到 settings 中 **********
settings.INSTALLED_APPS += [app for app in apps if app not in settings.INSTALLED_APPS]
settings.TENANT_SHARED_APPS += tenant_shared_apps
# ********** 注册路由 **********
settings.PLUGINS_URL_PATTERNS += plugins_url_patterns