File size: 587 Bytes
566570e
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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'),
]