Files
AdventureLog/backend/server/adventures/views/__init__.py
Sean Morley 8ddbeaaad2 Add calendar functionality with event management features
- Introduced CalendarViewSet for handling calendar events, including user authentication and event retrieval.
- Implemented calendar event services for managing various event types (visits, transportation, lodging, etc.).
- Added new calendar-related components in the frontend, including event display, filtering, and sidebar statistics.
- Enhanced user avatar component for better visual representation.
- Updated application version to reflect new features.
2026-06-25 18:50:07 -04:00

22 lines
677 B
Python

from .tags_view import *
from .location_image_view import *
from .location_view import *
from .category_view import *
from .checklist_view import *
from .collection_view import *
from .generate_description_view import *
from .ics_calendar_view import *
from .note_view import *
from .reverse_geocode_view import *
from .stats_view import *
from .transportation_view import *
from .global_search_view import *
from .attachment_view import *
from .lodging_view import *
from .recommendations_view import *
from .import_export_view import *
from .trail_view import *
from .activity_view import *
from .visit_view import *
from .calendar_view import *
from .itinerary_view import *