feat: added lots of tests

This commit is contained in:
2024-05-13 12:33:09 +02:00
parent ad017382a9
commit 05caeb9607
8 changed files with 113 additions and 11 deletions
+4
View File
@@ -2,6 +2,10 @@ from rest_framework.routers import DefaultRouter
from files.api.v1.views import FileUploadViewSet
app_name = "files"
router = DefaultRouter(trailing_slash=True)
router.register("", FileUploadViewSet)