mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 17:51:08 -05:00
- Add complete backend/ directory with full Django application - Add frontend/ directory with Vite + TypeScript setup ready for Next.js - Add comprehensive shared/ directory with: - Complete documentation and memory-bank archives - Media files and avatars (letters, park/ride images) - Deployment scripts and automation tools - Shared types and utilities - Add architecture/ directory with migration guides - Configure pnpm workspace for monorepo development - Update .gitignore to exclude .django_tailwind_cli/ build artifacts - Preserve all historical documentation in shared/docs/memory-bank/ - Set up proper structure for full-stack development with shared resources
32 lines
1.2 KiB
Python
32 lines
1.2 KiB
Python
# DEPRECATED: These URLs are deprecated and no longer used.
|
|
#
|
|
# Location search functionality has been moved to the parks app:
|
|
# - /parks/search/location/ (replaces /location/search/)
|
|
# - /parks/search/reverse-geocode/ (replaces /location/reverse-geocode/)
|
|
#
|
|
# Domain-specific location models are managed through their respective apps:
|
|
# - Parks app for ParkLocation
|
|
# - Rides app for RideLocation
|
|
# - Parks app for CompanyHeadquarters
|
|
#
|
|
# This file is kept for reference during migration cleanup only.
|
|
|
|
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = "location"
|
|
|
|
# NOTE: All URLs below are DEPRECATED
|
|
# The location app URLs should not be included in the main URLconf
|
|
|
|
urlpatterns = [
|
|
# DEPRECATED: Use /parks/search/location/ instead
|
|
path("search/", views.LocationSearchView.as_view(), name="search"),
|
|
# DEPRECATED: Use /parks/search/reverse-geocode/ instead
|
|
path("reverse-geocode/", views.reverse_geocode, name="reverse_geocode"),
|
|
# DEPRECATED: Use domain-specific location models instead
|
|
path("create/", views.LocationCreateView.as_view(), name="create"),
|
|
path("<int:pk>/update/", views.LocationUpdateView.as_view(), name="update"),
|
|
path("<int:pk>/delete/", views.LocationDeleteView.as_view(), name="delete"),
|
|
]
|