fix(api): update backstage form submission url

This commit is contained in:
QuantumGhost
2026-01-27 18:18:14 +08:00
parent 6cd62971c8
commit 69a1acbef6
2 changed files with 3 additions and 3 deletions

View File

@ -37,7 +37,7 @@ from services.workflow_run_service import WorkflowRunService
def _build_backstage_input_url(form_token: str | None) -> str | None:
if not form_token:
return None
base_url = dify_config.CONSOLE_WEB_URL
base_url = dify_config.APP_WEB_URL
if not base_url:
return None
return f"{base_url.rstrip('/')}/form/{form_token}"