mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 08:11:08 -05:00
- Cleaned up and standardized assertions in ApiTestMixin for API response validation. - Updated ASGI settings to use os.environ for setting the DJANGO_SETTINGS_MODULE. - Removed unused imports and improved formatting in settings.py. - Refactored URL patterns in urls.py for better readability and organization. - Enhanced view functions in views.py for consistency and clarity. - Added .flake8 configuration for linting and style enforcement. - Introduced type stubs for django-environ to improve type checking with Pylance.
49 lines
1.5 KiB
Python
49 lines
1.5 KiB
Python
# DEPRECATED: These views are deprecated and no longer used.
|
|
#
|
|
# Location search functionality has been moved to the parks app:
|
|
# - parks.views.location_search
|
|
# - parks.views.reverse_geocode
|
|
#
|
|
# Domain-specific location models are now used instead of the generic Location model:
|
|
# - ParkLocation in parks.models.location
|
|
# - RideLocation in rides.models.location
|
|
# - CompanyHeadquarters in parks.models.companies
|
|
#
|
|
# This file is kept for reference during migration cleanup only.
|
|
|
|
from django.views.generic import View
|
|
from django.http import JsonResponse
|
|
from django.contrib.auth.mixins import LoginRequiredMixin
|
|
from django.views.decorators.http import require_http_methods
|
|
|
|
|
|
# NOTE: All classes and functions below are DEPRECATED
|
|
# Use the equivalent functionality in the parks app instead
|
|
|
|
|
|
class LocationSearchView(View):
|
|
"""DEPRECATED: Use parks.views.location_search instead"""
|
|
|
|
|
|
class LocationCreateView(LoginRequiredMixin, View):
|
|
"""DEPRECATED: Use domain-specific location models instead"""
|
|
|
|
|
|
class LocationUpdateView(LoginRequiredMixin, View):
|
|
"""DEPRECATED: Use domain-specific location models instead"""
|
|
|
|
|
|
class LocationDeleteView(LoginRequiredMixin, View):
|
|
"""DEPRECATED: Use domain-specific location models instead"""
|
|
|
|
|
|
@require_http_methods(["GET"])
|
|
def reverse_geocode(request):
|
|
"""DEPRECATED: Use parks.views.reverse_geocode instead"""
|
|
return JsonResponse(
|
|
{
|
|
"error": "This endpoint is deprecated. Use /parks/search/reverse-geocode/ instead"
|
|
},
|
|
status=410,
|
|
)
|