From 295740c84dae110842a25ac8de38a296ba206dd9 Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Thu, 13 Mar 2025 10:04:48 +0100 Subject: [PATCH] Add: serve_file api url route --- backend/api/urls.py | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/api/urls.py b/backend/api/urls.py index aaca790..656e569 100644 --- a/backend/api/urls.py +++ b/backend/api/urls.py @@ -7,4 +7,5 @@ urlpatterns = [ path("user/", include("api.user.urls")), path("posts/", include("api.posts.urls")), path("creators/", include("api.creators.urls")), + path("files//", serve_content_file, name="serve_file"), ]