Begin reimplementing compose
This commit is contained in:
@@ -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")))
|
||||
|
||||
Reference in New Issue
Block a user