New version.

This commit is contained in:
2025-03-30 06:54:25 +02:00
parent 3926b2d837
commit d5917b9454
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ class UserService(BaseService):
return model
async def get_home_folder(self, user_uid):
folder = pathlib.Path(f"./home/{user_uid}")
folder = pathlib.Path(f"./drive/{user_uid}")
if not folder.exists():
folder.mkdir(parents=True, exist_ok=True)
return folder