feat: add dashboard friend circle management

This commit is contained in:
liuwei
2026-04-07 12:50:50 +08:00
parent d507cdf88d
commit e8ed0d4799
7 changed files with 1073 additions and 63 deletions

View File

@@ -147,6 +147,7 @@ class DashboardServer:
from admin.dashboard.blueprints.virtual_group import virtual_group_bp
from admin.dashboard.blueprints.file_browser import file_browser_bp
from admin.dashboard.blueprints.message_push import message_push_bp
from admin.dashboard.blueprints.friend_circle import friend_circle_bp
# 在app.register_blueprint部分添加
app.register_blueprint(virtual_group_bp, url_prefix='/virtual_group')
@@ -160,6 +161,7 @@ class DashboardServer:
app.register_blueprint(plugin_routes)
app.register_blueprint(file_browser_bp)
app.register_blueprint(message_push_bp)
app.register_blueprint(friend_circle_bp)
self.LOG.info("所有蓝图已注册")