From 84bf8b079ad678103ecf2a470b036c8e0de9dab9 Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Tue, 18 Mar 2025 22:30:07 +0100 Subject: [PATCH] Remove: images test app --- backend/core/settings.py | 2 +- backend/core/urls.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/core/settings.py b/backend/core/settings.py index b91afa5..2955fad 100644 --- a/backend/core/settings.py +++ b/backend/core/settings.py @@ -53,7 +53,7 @@ INSTALLED_APPS = [ "api.user", "api.posts", "api.creators", - "images", + # Apps for Backend logic "apps", "apps.archive", "apps.files", diff --git a/backend/core/urls.py b/backend/core/urls.py index 597b9c9..ac99c3f 100644 --- a/backend/core/urls.py +++ b/backend/core/urls.py @@ -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")), ]