From 2ca375c2144cde9600ed9b6cce02f0a06fa50dd9 Mon Sep 17 00:00:00 2001 From: PKC278 <52959804+PKC278@users.noreply.github.com> Date: Sun, 28 Dec 2025 15:59:36 +0800 Subject: [PATCH] =?UTF-8?q?feat(system):=20=E6=B7=BB=E5=8A=A0=E5=89=8D?= =?UTF-8?q?=E7=AB=AF=E5=92=8C=E5=90=8E=E7=AB=AF=E7=89=88=E6=9C=AC=E4=BF=A1?= =?UTF-8?q?=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/endpoints/system.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/api/endpoints/system.py b/app/api/endpoints/system.py index 136299b7..f5a4c360 100644 --- a/app/api/endpoints/system.py +++ b/app/api/endpoints/system.py @@ -149,7 +149,9 @@ def get_global_setting(token: str): info.update({ "USER_UNIQUE_ID": SubscribeHelper().get_user_uuid(), "SUBSCRIBE_SHARE_MANAGE": share_admin, - "WORKFLOW_SHARE_MANAGE": share_admin + "WORKFLOW_SHARE_MANAGE": share_admin, + "FRONTEND_VERSION": SystemChain().get_frontend_version(), + "BACKEND_VERSION": APP_VERSION }) return schemas.Response(success=True, data=info)