From 2204e3a2afcefe3618b908df1fe8ba5953c3c9d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=94=B2=E8=BE=B0=E7=94=9F=E4=BA=A7?= Date: Tue, 14 Apr 2026 15:24:10 +0800 Subject: [PATCH] fix: InformationUpdate content field make optional --- backend/app/routers/information.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/routers/information.py b/backend/app/routers/information.py index e2be6b1..82054ff 100644 --- a/backend/app/routers/information.py +++ b/backend/app/routers/information.py @@ -39,7 +39,7 @@ class InformationCreate(BaseModel): class InformationUpdate(BaseModel): title: Optional[str] = None - content: Optional[str] + content: Optional[str] = None status: Optional[str] = None expect_category: Optional[str] = None expect_version: Optional[str] = None