mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 08:31:08 -05:00
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
This commit is contained in:
@@ -112,7 +112,6 @@ LOCAL_APPS = [
|
|||||||
"apps.accounts",
|
"apps.accounts",
|
||||||
"apps.parks",
|
"apps.parks",
|
||||||
"apps.rides",
|
"apps.rides",
|
||||||
"api", # Centralized API app (located at backend/api/)
|
|
||||||
"django_forwardemail", # New PyPI package for email service
|
"django_forwardemail", # New PyPI package for email service
|
||||||
"apps.moderation",
|
"apps.moderation",
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -47,9 +47,7 @@ urlpatterns = [
|
|||||||
path("", HomeView.as_view(), name="home"),
|
path("", HomeView.as_view(), name="home"),
|
||||||
# Health Check URLs
|
# Health Check URLs
|
||||||
path("health/", include("health_check.urls")),
|
path("health/", include("health_check.urls")),
|
||||||
# Centralized API URLs - routes through main API router
|
# API temporarily removed
|
||||||
path("api/", include("apps.api.urls")),
|
|
||||||
# All API endpoints are now consolidated under /api/v1/
|
|
||||||
# Parks and Rides URLs
|
# Parks and Rides URLs
|
||||||
path("parks/", include("apps.parks.urls", namespace="parks")),
|
path("parks/", include("apps.parks.urls", namespace="parks")),
|
||||||
# Global rides URLs
|
# Global rides URLs
|
||||||
|
|||||||
Reference in New Issue
Block a user