fix: Register channels API in router — omnichannel endpoints live

https://claude.ai/code/session_01LsnvBa7HwF5hs99VZbgLGj
This commit is contained in:
Claude 2026-04-12 03:22:10 +00:00
parent 7c6a6d3702
commit a6df6d5fd2
No known key found for this signature in database

View File

@ -98,3 +98,7 @@ api_router.include_router(strategic_deals_router.router)
# ── WhatsApp Webhook — Incoming messages & status ────────────
from app.api.v1 import whatsapp_webhook as whatsapp_webhook_router
api_router.include_router(whatsapp_webhook_router.router)
# ── Omnichannel — Unified channel management ─────────────────
from app.api.v1 import channels as channels_router
api_router.include_router(channels_router.router)