Reworked admin
Build and Publish / Build and Publish Docker Image (push) Successful in 3m11s

This commit is contained in:
2026-05-26 00:19:11 +03:00
parent a3a3f5368d
commit aafb364eb8
11 changed files with 4192 additions and 31 deletions
+6
View File
@@ -108,6 +108,9 @@ pub(super) struct PlaylistCard {
pub(super) title: String,
pub(super) track_count: i64,
pub(super) is_own: bool,
pub(super) owner_name: Option<String>,
pub(super) is_public: bool,
pub(super) is_saved: bool,
pub(super) kind: String,
}
@@ -128,6 +131,9 @@ pub(super) struct PlaylistDetail {
pub(super) title: String,
pub(super) description: Option<String>,
pub(super) is_own: bool,
pub(super) owner_name: Option<String>,
pub(super) is_public: bool,
pub(super) is_saved: bool,
pub(super) kind: String,
pub(super) tracks: Vec<TrackItem>,
}