feat: Implement recent chats feature with API endpoint and UI integration

This commit is contained in:
Andre Beging
2025-10-07 15:08:33 +02:00
parent 85094f8683
commit ddf29c1d36
7 changed files with 682 additions and 3 deletions

View File

@@ -103,3 +103,12 @@ class StatusResponse(BaseModel):
session_active: bool
phone_number: Optional[str]
code_sent: bool = False
class RecentChat(BaseModel):
chat_id: str
display_name: str
chat_type: str
username: Optional[str] = None
phone_number: Optional[str] = None
last_used_at: Optional[datetime] = None