feat: store AP note extensions in JSONB and render movies-diary posts as rich cards
Some checks failed
lint / lint (push) Failing after 7m24s
test / unit (push) Successful in 17m17s
test / integration (push) Failing after 18m2s

This commit is contained in:
2026-05-24 04:29:04 +02:00
parent 3f26456d77
commit 7ee22ae79f
17 changed files with 227 additions and 9 deletions

View File

@@ -45,6 +45,8 @@ pub struct ThoughtResponse {
pub boosted_by_viewer: bool,
pub created_at: DateTime<Utc>,
pub updated_at: Option<DateTime<Utc>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub note_extensions: Option<serde_json::Value>,
}
#[derive(Serialize, utoipa::ToSchema)]