All checks were successful
CI / test (push) Successful in 23s
- 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
22 lines
597 B
Python
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",
|
|
]
|