From bb0bf81e02f5dad167519814533eb039182ac8f6 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Wed, 3 Jun 2026 22:58:26 -0700 Subject: [PATCH] release: v0.9.34rc49 --- archivebox/core/urls.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/archivebox/core/urls.py b/archivebox/core/urls.py index a06955c0..d0d87a05 100644 --- a/archivebox/core/urls.py +++ b/archivebox/core/urls.py @@ -26,6 +26,7 @@ from archivebox.core.views import ( HealthCheckView, ) from archivebox.progressmonitor.views import live_progress_view +from abx_plugins.plugins.opencode.views import opencode_proxy_view # GLOBAL_CONTEXT doesn't work as-is, disabled for now: https://github.com/ArchiveBox/ArchiveBox/discussions/1306 @@ -42,6 +43,7 @@ urlpatterns = [ path("favicon.ico", static.serve, {"document_root": CONSTANTS.STATIC_DIR, "path": "favicon.ico"}), path("docs/", RedirectView.as_view(url="https://github.com/ArchiveBox/ArchiveBox/wiki"), name="Docs"), re_path(r"^admin/agent/?(?=$|opencode)", include("abx_plugins.plugins.opencode.urls")), + re_path(r"^assets/(?P.*)$", opencode_proxy_view, name="opencode-assets"), path("public/", PublicIndexView.as_view(), name="public-index"), path("public.html", RedirectView.as_view(url="/public/"), name="public-index-html"), path("archive/", RedirectView.as_view(url="/")),