last-updates

This commit is contained in:
2025-07-29 21:01:46 -04:00
parent 18a82711cb
commit 40c801f053
9 changed files with 351 additions and 1020 deletions

View File

@@ -19,7 +19,7 @@ class Page(TimestampedModel):
id: int = Field(..., description="Unique page identifier")
title: str = Field(..., description="Page title")
path: str = Field(..., description="Page path/slug")
content: str = Field(..., description="Page content")
content: Optional[str] = Field(None, description="Page content")
# Optional fields that may be present
description: Optional[str] = Field(None, description="Page description")