feat(groups): include member profile fields in chat members API
Some checks are pending
CI / test (push) Has started running

This commit is contained in:
2026-03-08 21:22:53 +03:00
parent 90320ffd5d
commit 6e24c559aa
5 changed files with 48 additions and 3 deletions

View File

@@ -46,6 +46,9 @@ class ChatMemberRead(BaseModel):
id: int
user_id: int
username: str | None = None
name: str | None = None
avatar_url: str | None = None
role: ChatMemberRole
joined_at: datetime