fix: Recipe comments display a username/id rather than … (#4726)

Co-authored-by: Kuchenpirat <jojow@gmx.net>
Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com>
This commit is contained in:
Shlok Sheth
2025-01-14 09:00:23 -07:00
committed by GitHub
parent 376c14be9a
commit 4b992afc67
6 changed files with 10 additions and 1 deletions

View File

@@ -15,6 +15,7 @@ class UserBase(MealieModel):
id: UUID4
username: str | None = None
admin: bool
full_name: str | None = None
model_config = ConfigDict(from_attributes=True)