serve images via X-Sendfile

This commit is contained in:
j3d1 2023-11-20 21:01:03 +01:00
parent 27589a09bd
commit 153d79f126
2 changed files with 16 additions and 11 deletions

View file

@ -23,5 +23,6 @@ urlpatterns = [
path('admin/', admin.site.urls),
path('api/1/', include('inventory.api_v1')),
path('api/1/', include('files.api_v1')),
path('api/1/', include('files.media_v1')),
path('api/', get_info),
]