Files
Messenger/app/database/models.py
benya da73b79ee7
Some checks failed
CI / test (push) Failing after 18s
feat(contacts): add contacts module with backend APIs and web tab
- add user_contacts table and migration

- expose /users/contacts list/add/remove endpoints

- add Contacts tab in chat list with add/remove actions
2026-03-08 11:38:11 +03:00

26 lines
762 B
Python

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