action bugfix

This commit is contained in:
2023-09-18 02:54:53 +00:00
parent 1f8d079d4d
commit 2721cd60d1
2 changed files with 3 additions and 1 deletions

View File

@@ -70,6 +70,7 @@ async def kintone_data(
"/actions",
response_model=t.List[Action],
response_model_exclude={"id"},
response_model_exclude_none=True,
)
async def action_data(
request: Request,

View File

@@ -74,7 +74,8 @@ class Action(BaseModel):
id: int
name: str = None
title: str = None
inputpoint: str = None
subtitle: str = None
outputpoints: str = None
property: str = None
class Config: