From ae7ce87ee2e0e67d2f058d30a54fe1124ef3d097 Mon Sep 17 00:00:00 2001 From: ymq Date: Sun, 16 Aug 2026 19:24:51 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20SDLC=20=E8=8F=9C=E5=8D=95=20url=20?= =?UTF-8?q?=E6=8C=87=E5=90=91=E6=97=A7=E7=9B=AE=E5=BD=95(sd=5Fprojects?= =?UTF-8?q?=E7=AD=89)=E2=86=92=E6=94=B9=20=5Flist=20=E6=96=B0=E7=9B=AE?= =?UTF-8?q?=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 服务器 wwwroot 已迁移到 sd_project_list/sd_bug_list/sd_test_case_list/sd_iteration_list, menus 仍指向旧的 sd_projects/sd_bugs/sd_test_cases/sd_iterations 导致文件不存在 500。 --- pipeline_service/sdlc_ability.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pipeline_service/sdlc_ability.py b/pipeline_service/sdlc_ability.py index 5fa2a1a..bbebe01 100644 --- a/pipeline_service/sdlc_ability.py +++ b/pipeline_service/sdlc_ability.py @@ -612,10 +612,10 @@ def register_sdlc_ability(): handlers=SDL_HANDLERS, roles=SDL_ROLES, menus=[ - {"label": "📁 项目", "icon": "", "url": "/pipeline-sdlc/sd_projects/index.ui", "type": "popup", "width": "85%", "height": "80%"}, - {"label": "🐛 Bug", "icon": "", "url": "/pipeline-sdlc/sd_bugs/index.ui", "type": "popup", "width": "85%", "height": "80%"}, - {"label": "🧪 测试用例", "icon": "", "url": "/pipeline-sdlc/sd_test_cases/index.ui", "type": "popup", "width": "85%", "height": "80%"}, - {"label": "🔄 迭代", "icon": "", "url": "/pipeline-sdlc/sd_iterations/index.ui", "type": "popup", "width": "85%", "height": "80%"}, + {"label": "📁 项目", "icon": "", "url": "/pipeline-sdlc/sd_project_list/index.ui", "type": "popup", "width": "85%", "height": "80%"}, + {"label": "🐛 Bug", "icon": "", "url": "/pipeline-sdlc/sd_bug_list/index.ui", "type": "popup", "width": "85%", "height": "80%"}, + {"label": "🧪 测试用例", "icon": "", "url": "/pipeline-sdlc/sd_test_case_list/index.ui", "type": "popup", "width": "85%", "height": "80%"}, + {"label": "🔄 迭代", "icon": "", "url": "/pipeline-sdlc/sd_iteration_list/index.ui", "type": "popup", "width": "85%", "height": "80%"}, ], ) register_ability(ability)