Release v4928.1.4.2 stable

This commit is contained in:
2026-06-09 22:55:58 +01:00
commit 6445044ac6
280 changed files with 41775 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
"""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 = '''
<section class="cf-empty">
<h2 class="h5">Conversas</h2>
<p class="mb-0">A inbox continua no Chatwoot. Esta página fica reservada para a vista consolidada de conversas dentro do ClientFlow.</p>
</section>
'''
return layout("Conversas", "Vista futura de conversas sincronizadas", body, "conversations")