Added webdav.

This commit is contained in:
retoor 2025-03-29 07:27:56 +01:00
parent 886d21999c
commit 6dca3a96e1

View File

@ -40,7 +40,7 @@ class UserService(BaseService):
return model
async def get_home_folder(self, user_uid):
folder = pathlib.Path(f"./drive/{user_uid}")
folder = pathlib.Path(f"./home/{user_uid}")
if not folder.exists():
folder.mkdir(parents=True, exist_ok=True)
return folder