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"), ]