From 71d0cd5e73c27183c86af057afe99eb11d05c905 Mon Sep 17 00:00:00 2001 From: Reinout Meliesie Date: Tue, 11 Mar 2025 12:14:47 +0100 Subject: [PATCH] Add 'bookwyrm/' prefix to all urls --- bookwyrm/urls.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bookwyrm/urls.py b/bookwyrm/urls.py index cd75eb0c0..497692db6 100644 --- a/bookwyrm/urls.py +++ b/bookwyrm/urls.py @@ -835,6 +835,8 @@ urlpatterns = [ # Serves /static when DEBUG is true. urlpatterns.extend(staticfiles_urlpatterns()) +urlpatterns = [path("bookwyrm/", include(urlpatterns))] + # pylint: disable=invalid-name handler500 = "bookwyrm.views.server_error"