Messaging module (communication): - vendor_messages.py: Conversation and message management - vendor_notifications.py: Vendor notifications - vendor_email_settings.py: SMTP and provider configuration - vendor_email_templates.py: Email template customization CMS module (content management): - vendor_media.py: Media library management - vendor_content_pages.py: Content page overrides All routes auto-discovered via is_self_contained=True. Deleted 5 legacy files from app/api/v1/vendor/. app/api/v1/vendor/ now empty except for __init__.py (auto-discovery only). Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
26 lines
752 B
Python
26 lines
752 B
Python
# app/modules/cms/routes/api/vendor.py
|
|
"""
|
|
CMS module vendor API routes.
|
|
|
|
Aggregates all vendor CMS routes:
|
|
- /content-pages/* - Content page management
|
|
- /media/* - Media library management
|
|
"""
|
|
|
|
from fastapi import APIRouter
|
|
|
|
from .vendor_content_pages import vendor_content_pages_router
|
|
from .vendor_media import vendor_media_router
|
|
|
|
# Route configuration for auto-discovery
|
|
ROUTE_CONFIG = {
|
|
"priority": 100, # Register last (CMS has catch-all slug routes)
|
|
}
|
|
|
|
vendor_router = APIRouter()
|
|
router = vendor_router # Alias for discovery compatibility
|
|
|
|
# Aggregate all CMS vendor routes
|
|
vendor_router.include_router(vendor_content_pages_router, tags=["vendor-content-pages"])
|
|
vendor_router.include_router(vendor_media_router, tags=["vendor-media"])
|