mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 08:51:09 -05:00
- Created ParkPhoto and ParkPhotoEvent models in the parks app, including fields for image, caption, alt text, and relationships to the Park model. - Implemented triggers for insert and update operations on ParkPhoto to log changes in ParkPhotoEvent. - Created RidePhoto and RidePhotoEvent models in the rides app, with similar structure and functionality as ParkPhoto. - Added fields for photo type in RidePhoto and implemented corresponding triggers for logging changes. - Established necessary indexes and unique constraints for both models to ensure data integrity and optimize queries.
43 lines
1.5 KiB
Python
43 lines
1.5 KiB
Python
"""
|
|
Auth domain URL Configuration for ThrillWiki API v1.
|
|
|
|
This module contains all URL patterns for authentication, user accounts,
|
|
profiles, and top lists functionality.
|
|
"""
|
|
|
|
from django.urls import path, include
|
|
from rest_framework.routers import DefaultRouter
|
|
from . import views
|
|
|
|
# Create router and register ViewSets
|
|
router = DefaultRouter()
|
|
router.register(r"profiles", views.UserProfileViewSet, basename="user-profile")
|
|
router.register(r"toplists", views.TopListViewSet, basename="top-list")
|
|
router.register(r"toplist-items", views.TopListItemViewSet, basename="top-list-item")
|
|
|
|
urlpatterns = [
|
|
# Authentication endpoints
|
|
path("login/", views.LoginAPIView.as_view(), name="auth-login"),
|
|
path("signup/", views.SignupAPIView.as_view(), name="auth-signup"),
|
|
path("logout/", views.LogoutAPIView.as_view(), name="auth-logout"),
|
|
path("user/", views.CurrentUserAPIView.as_view(), name="auth-current-user"),
|
|
path(
|
|
"password/reset/",
|
|
views.PasswordResetAPIView.as_view(),
|
|
name="auth-password-reset",
|
|
),
|
|
path(
|
|
"password/change/",
|
|
views.PasswordChangeAPIView.as_view(),
|
|
name="auth-password-change",
|
|
),
|
|
path(
|
|
"social/providers/",
|
|
views.SocialProvidersAPIView.as_view(),
|
|
name="auth-social-providers",
|
|
),
|
|
path("status/", views.AuthStatusAPIView.as_view(), name="auth-status"),
|
|
# Include router URLs for ViewSets (profiles, top lists)
|
|
path("", include(router.urls)),
|
|
]
|