diff options
author | Matthew Lemon <y@yulqen.org> | 2024-05-14 12:53:28 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-05-14 12:53:28 +0100 |
commit | 46f11648d902b22a177b878e35d6049a7a127ce7 (patch) | |
tree | f59f6630717bc9097c988a6d8d3eebe4ad548f1d /config/urls.py | |
parent | b5e2c4b9a7aab20db6dd6072a01abd114e8e55de (diff) |
Can now upload to Spaces
Diffstat (limited to 'config/urls.py')
-rw-r--r-- | config/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/urls.py b/config/urls.py index bc672a5..270a8ad 100644 --- a/config/urls.py +++ b/config/urls.py @@ -20,7 +20,7 @@ urlpatterns = [ path("users/", include("pyblackbird_cc.users.urls", namespace="users")), path("accounts/", include("allauth.urls")), # Your stuff: custom urls includes go here - # ... + path("resources/", include("pyblackbird_cc.resources.urls", namespace="resources")), # Media files *static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT), ] |