Begin reimplementing compose

This commit is contained in:
2026-03-12 00:12:57 +00:00
parent 1570f79b62
commit 79766d279d
56 changed files with 2726 additions and 6271 deletions

View File

@@ -49,7 +49,6 @@ from core.views import (
)
urlpatterns = [
path("__debug__/", include("debug_toolbar.urls")),
path(
"favicon.ico",
RedirectView.as_view(url=f"{settings.STATIC_URL}favicon.ico", permanent=False),
@@ -358,11 +357,6 @@ urlpatterns = [
compose.ComposeThread.as_view(),
name="compose_thread",
),
path(
"compose/history-sync/",
compose.ComposeHistorySync.as_view(),
name="compose_history_sync",
),
path(
"compose/commands/bp/bind/",
compose.ComposeBindBP.as_view(),
@@ -808,3 +802,6 @@ urlpatterns = [
name="queue_delete",
),
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
if getattr(settings, "DEBUG_TOOLBAR_ENABLED", False):
urlpatterns.insert(0, path("__debug__/", include("debug_toolbar.urls")))