chore: clear lint and sync admin story views

This commit is contained in:
2026-04-18 12:35:37 +08:00
parent bb575a7fe9
commit 9e1a17fa67
16 changed files with 670 additions and 355 deletions

View File

@@ -45,7 +45,11 @@ class ReadingEventResponse(BaseModel):
from_attributes = True
@router.post("/reading-events", response_model=ReadingEventResponse, status_code=status.HTTP_201_CREATED)
@router.post(
"/reading-events",
response_model=ReadingEventResponse,
status_code=status.HTTP_201_CREATED,
)
async def create_reading_event(
payload: ReadingEventCreate,
user: User = Depends(require_user),