Tightly integrate WhatsApp selectors into existing UIs

This commit is contained in:
2026-02-16 10:51:57 +00:00
parent a38339c809
commit 15af8af6b2
19 changed files with 2846 additions and 156 deletions

View File

@@ -97,6 +97,12 @@ MIDDLEWARE = [
ROOT_URLCONF = "app.urls"
ASGI_APPLICATION = "app.asgi.application"
COMPOSE_WS_ENABLED = os.environ.get("COMPOSE_WS_ENABLED", "false").lower() in {
"1",
"true",
"yes",
"on",
}
TEMPLATES = [
{

View File

@@ -184,6 +184,11 @@ urlpatterns = [
compose.ComposeThread.as_view(),
name="compose_thread",
),
path(
"compose/history-sync/",
compose.ComposeHistorySync.as_view(),
name="compose_history_sync",
),
path(
"compose/media/blob/",
compose.ComposeMediaBlob.as_view(),