Remove: images test app

This commit is contained in:
Aroy-Art 2025-03-18 22:30:07 +01:00
parent 73ec411384
commit 84bf8b079a
Signed by: Aroy
GPG key ID: 583642324A1D2070
2 changed files with 1 additions and 2 deletions

View file

@ -53,7 +53,7 @@ INSTALLED_APPS = [
"api.user",
"api.posts",
"api.creators",
"images",
# Apps for Backend logic
"apps",
"apps.archive",
"apps.files",

View file

@ -21,5 +21,4 @@ from django.urls import include, path
urlpatterns = [
path("admin/", admin.site.urls),
path("api/", include("api.urls")),
path("", include("images.urls")),
]