From d21ae6027d4972585d8fe0599c9a9449313b35f7 Mon Sep 17 00:00:00 2001 From: pac7 <47831526-pac7@users.noreply.replit.com> Date: Mon, 22 Sep 2025 00:30:17 +0000 Subject: [PATCH] Remove temporary API integration and settings Remove the temporary API app from LOCAL_APPS in base.py and remove API URL includes from thrillwiki/urls.py. Replit-Commit-Author: Agent Replit-Commit-Session-Id: bb110295-d54a-4af8-ba17-33bb9f82dfa0 Replit-Commit-Checkpoint-Type: full_checkpoint --- config/django/base.py | 1 - thrillwiki/urls.py | 4 +--- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/config/django/base.py b/config/django/base.py index 46227794..13a385d8 100644 --- a/config/django/base.py +++ b/config/django/base.py @@ -112,7 +112,6 @@ LOCAL_APPS = [ "apps.accounts", "apps.parks", "apps.rides", - "api", # Centralized API app (located at backend/api/) "django_forwardemail", # New PyPI package for email service "apps.moderation", ] diff --git a/thrillwiki/urls.py b/thrillwiki/urls.py index 10ce01e5..8bb3e876 100644 --- a/thrillwiki/urls.py +++ b/thrillwiki/urls.py @@ -47,9 +47,7 @@ urlpatterns = [ path("", HomeView.as_view(), name="home"), # Health Check URLs path("health/", include("health_check.urls")), - # Centralized API URLs - routes through main API router - path("api/", include("apps.api.urls")), - # All API endpoints are now consolidated under /api/v1/ + # API temporarily removed # Parks and Rides URLs path("parks/", include("apps.parks.urls", namespace="parks")), # Global rides URLs