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)