Spaces:
Sleeping
Sleeping
| # wordpress_api/urls.py | |
| from django.urls import path | |
| # from .views import get_all_users, get_user_details # For JsonResponse method | |
| from .views import UserListAPIView, UserDetailAPIView # For DRF method | |
| urlpatterns = [ | |
| # For JsonResponse method: | |
| # path('users/', get_all_users, name='wp_user_list'), | |
| # path('users/<int:user_id>/', get_user_details, name='wp_user_detail'), | |
| # For DRF method: | |
| path('users/', UserListAPIView.as_view(), name='wp_user_list_drf'), | |
| path('users/<int:user_id>/', UserDetailAPIView.as_view(), name='wp_user_detail_drf'), | |
| ] | |