update: storage path

This commit is contained in:
tao.chen
2026-08-13 09:35:27 +08:00
parent 302bda2ee9
commit da9a1ec472
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -100,7 +100,7 @@ TREE_EXCLUDED_USAGE_TYPES = (
def user_relative_path(context: RequestContext, child_path: str = "") -> str:
base = f"users/{context.user.username}"
base = f"workspace/{context.user.user_id}"
normalized = normalize_user_path(child_path)
return f"{base}/{normalized}" if normalized else base