소스 검색

refac: include archived flag in exports

Timothy J. Baek 1 년 전
부모
커밋
eefe01454f
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      backend/apps/web/models/chats.py

+ 1 - 0
backend/apps/web/models/chats.py

@@ -64,6 +64,7 @@ class ChatResponse(BaseModel):
     updated_at: int  # timestamp in epoch
     created_at: int  # timestamp in epoch
     share_id: Optional[str] = None  # id of the chat to be shared
+    archived: bool
 
 
 class ChatTitleIdResponse(BaseModel):