feat/enh: show user count in channels

This commit is contained in:
Timothy Jaeryang Baek
2025-11-25 03:46:30 -05:00
parent a7ee36266a
commit 3b5710d0cd
4 changed files with 65 additions and 5 deletions

View File

@@ -59,6 +59,7 @@ class ChannelModel(BaseModel):
class ChannelResponse(ChannelModel):
write_access: bool = False
user_count: Optional[int] = None
class ChannelForm(BaseModel):