fixes and cleanup

This commit is contained in:
Simon
2026-03-05 18:18:48 +00:00
parent 76fd5a4f4f
commit 2627505ade
49 changed files with 3245 additions and 1376 deletions

View File

@@ -24,19 +24,19 @@ pub struct Channel {
#[derive(serde::Serialize)]
pub struct ChannelOption {
pub id: String, //"channels",
pub title: String, //"Sites",
pub description: String, //"Websites included in search results.",
pub systemImage: String, //"network",
pub colorName: String, //"purple",
pub id: String, //"channels",
pub title: String, //"Sites",
pub description: String, //"Websites included in search results.",
pub systemImage: String, //"network",
pub colorName: String, //"purple",
pub options: Vec<FilterOption>, //[],
pub multiSelect: bool, //true
pub multiSelect: bool, //true
}
#[derive(serde::Serialize, Debug, Clone)]
pub struct FilterOption{
pub id: String, //"sort",
pub title: String, //"Sort",
pub struct FilterOption {
pub id: String, //"sort",
pub title: String, //"Sort",
}
#[derive(serde::Serialize)]