initial commit - LeDiscord plateforme des copains
This commit is contained in:
30
backend/models/__init__.py
Normal file
30
backend/models/__init__.py
Normal file
@@ -0,0 +1,30 @@
|
||||
from .user import User
|
||||
from .event import Event, EventParticipation
|
||||
from .album import Album, Media, MediaLike
|
||||
from .post import Post, PostMention
|
||||
from .vlog import Vlog, VlogLike, VlogComment
|
||||
from .notification import Notification
|
||||
from .settings import SystemSettings
|
||||
from .information import Information
|
||||
from .ticket import Ticket, TicketType, TicketStatus, TicketPriority
|
||||
|
||||
__all__ = [
|
||||
"User",
|
||||
"Event",
|
||||
"EventParticipation",
|
||||
"Album",
|
||||
"Media",
|
||||
"MediaLike",
|
||||
"Post",
|
||||
"PostMention",
|
||||
"Vlog",
|
||||
"VlogLike",
|
||||
"VlogComment",
|
||||
"Notification",
|
||||
"SystemSettings",
|
||||
"Information",
|
||||
"Ticket",
|
||||
"TicketType",
|
||||
"TicketStatus",
|
||||
"TicketPriority"
|
||||
]
|
||||
Reference in New Issue
Block a user