feat(folders): implement copy_folders taking care of ownership

This commit is contained in:
Edouard Vanbelle
2026-05-11 22:58:33 +02:00
parent 85c8c086ac
commit 2f49daa4ee
7 changed files with 233 additions and 12 deletions
+13
View File
@@ -671,6 +671,19 @@ impl FileManagementUseCase for StubFileManagementUseCase {
) -> Result<FileDto, DomainError> {
Ok(FileDto::default())
}
async fn copy_folder_tree_owned(
&self,
_source_folder_id: &str,
_caller_id: Uuid,
_target_parent_id: Option<String>,
_dest_name: Option<String>,
) -> Result<crate::application::ports::storage_ports::CopyFolderTreeResult, DomainError> {
Err(DomainError::internal_error(
"StubFileManagement",
"copy_folder_tree_owned not implemented",
))
}
}
// ---------------------------------------------------------------------------