"""Conversation placeholder routes. Moved from app.admin_dashboard in v4.7.2. The handlers still reuse legacy helpers to keep this refactor behavior-preserving. """ from fastapi import APIRouter import app.admin_dashboard as legacy from app.admin_dashboard import * # noqa: F401,F403 router = APIRouter() @router.get("/conversations", response_class=HTMLResponse) @router.get("/conversas", response_class=HTMLResponse) async def conversations_page(): body = '''

Conversas

A inbox continua no Chatwoot. Esta página fica reservada para a vista consolidada de conversas dentro do ClientFlow.

''' return layout("Conversas", "Vista futura de conversas sincronizadas", body, "conversations")