Files
Messenger/app/database/models.py
benya f6ad480973
All checks were successful
CI / test (push) Successful in 23s
feat: add message reliability foundation
- implement idempotent message creation via client_message_id

- add persistent delivered/read receipts

- expose /messages/status and wire websocket receipt events

- update web client to send client ids and auto-ack delivered/read
2026-03-07 23:57:35 +03:00

22 lines
597 B
Python

from app.auth.models import EmailVerificationToken, PasswordResetToken
from app.chats.models import Chat, ChatMember
from app.email.models import EmailLog
from app.media.models import Attachment
from app.messages.models import Message, MessageIdempotencyKey, MessageReceipt
from app.notifications.models import NotificationLog
from app.users.models import User
__all__ = [
"Attachment",
"Chat",
"ChatMember",
"EmailLog",
"EmailVerificationToken",
"Message",
"MessageIdempotencyKey",
"MessageReceipt",
"NotificationLog",
"PasswordResetToken",
"User",
]