emojis pages

This commit is contained in:
2026-04-11 21:04:49 -06:00
parent 77ea4e29e6
commit 81d48c83cb
5 changed files with 315 additions and 43 deletions

View File

@@ -6,12 +6,14 @@ use serde::{Deserialize, Serialize};
pub struct Space {
pub id: String,
pub name: String,
pub icon: Option<String>,
}
#[derive(Debug, Clone, Deserialize)]
pub struct Page {
pub id: String,
pub title: Option<String>,
pub icon: Option<String>,
}
#[derive(Deserialize)]
@@ -252,6 +254,7 @@ pub struct SearchResultSpace {
pub struct SearchResult {
pub id: String,
pub title: Option<String>,
pub icon: Option<String>,
pub highlight: Option<String>,
pub space: Option<SearchResultSpace>,
}