feat: Implement album and person sharing with user search and a dedicated share dialog.

This commit is contained in:
2025-12-04 00:58:10 +01:00
parent 74d74a128b
commit 7f07169064
23 changed files with 816 additions and 66 deletions

View File

@@ -96,4 +96,8 @@ impl UserService for UserServiceImpl {
.await?
.ok_or(CoreError::NotFound("User".to_string(), user_id))
}
async fn search_users(&self, query: &str) -> CoreResult<Vec<User>> {
self.repo.search_users(query).await
}
}