mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 00:07:22 +00:00
23 lines
1.1 KiB
Python
23 lines
1.1 KiB
Python
from marshmallow import fields
|
|
|
|
from project.api import marshmallow
|
|
from project.api.event.schemas import EventDumpSchema
|
|
from project.api.event_category.schemas import EventCategoryDumpSchema
|
|
from project.api.event_reference.schemas import EventReferenceDumpSchema
|
|
from project.api.image.schemas import ImageDumpSchema
|
|
from project.api.location.schemas import LocationDumpSchema
|
|
from project.api.organization.schemas import OrganizationDumpSchema
|
|
from project.api.organizer.schemas import OrganizerDumpSchema
|
|
from project.api.place.schemas import PlaceDumpSchema
|
|
|
|
|
|
class DumpResponseSchema(marshmallow.Schema):
|
|
events = fields.List(fields.Nested(EventDumpSchema))
|
|
places = fields.List(fields.Nested(PlaceDumpSchema))
|
|
locations = fields.List(fields.Nested(LocationDumpSchema))
|
|
event_categories = fields.List(fields.Nested(EventCategoryDumpSchema))
|
|
organizers = fields.List(fields.Nested(OrganizerDumpSchema))
|
|
images = fields.List(fields.Nested(ImageDumpSchema))
|
|
organizations = fields.List(fields.Nested(OrganizationDumpSchema))
|
|
event_references = fields.List(fields.Nested(EventReferenceDumpSchema))
|