Merge pull request #641 from EdouardVanbelle/refactor/front-resource-list

feat(fileDto, folderDto): add is_favorite + is_shared
This commit is contained in:
Dionisio Pozo
2026-07-22 06:51:28 +02:00
committed by GitHub
50 changed files with 1140 additions and 287 deletions
@@ -462,6 +462,10 @@ fn file_dto_from_search(fr: &crate::application::dtos::search_dto::SearchFileRes
// §14 provenance not selected by the search result DTO.
created_by: None,
updated_by: None,
// NextCloud search doesn't render the SPA badges; safe
// defaults, dropped by the WebDAV/NC XML property serializer.
is_favorite: false,
is_shared: false,
}
}
@@ -495,6 +499,10 @@ fn folder_dto_from_search(
// §14 provenance not selected by search results.
created_by: None,
updated_by: None,
// See file_dto_from_search: NC/DAV property serializer drops
// these; safe default.
is_favorite: false,
is_shared: false,
}
}
@@ -2401,6 +2401,10 @@ mod tests {
// §14 provenance not relevant to path-mapper tests.
created_by: None,
updated_by: None,
// Caller state flags not read by the WebDAV path mapper;
// Nextcloud DAV surfaces don't render the SPA badges.
is_favorite: false,
is_shared: false,
}
}