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
@@ -77,6 +77,9 @@ pub(super) struct PlaylistRow {
pub(super) title: String,
pub(super) track_count: i64,
pub(super) is_own: bool,
pub(super) owner_name: String,
pub(super) is_public: bool,
pub(super) is_saved: bool,
}
#[derive(sqlx::FromRow)]
@@ -85,6 +88,9 @@ pub(super) struct PlaylistInfoRow {
pub(super) title: String,
pub(super) description: Option<String>,
pub(super) owner_id: i64,
pub(super) owner_name: String,
pub(super) is_public: bool,
pub(super) is_saved: bool,
}
#[derive(sqlx::FromRow)]