feat: add functionality to remove media from album, including API integration and UI context menu

This commit is contained in:
2025-11-16 01:47:36 +01:00
parent 07b797b82b
commit f41a3169e9
9 changed files with 169 additions and 17 deletions

View File

@@ -121,3 +121,8 @@ impl<T> PaginatedResponse<T> {
}
}
}
#[derive(serde::Deserialize)]
pub struct RemoveMediaFromAlbumRequest {
pub media_ids: Vec<uuid::Uuid>,
}