10 lines
400 B
Python
10 lines
400 B
Python
from django.urls import path
|
|
from .views import PublicUserView, SecureUserUpdateView
|
|
|
|
urlpatterns = [
|
|
# URL for the public view to list users with public fields
|
|
path('users/', PublicUserView.as_view(), name='public-user-list'),
|
|
|
|
# URL for secure view to retrieve and update user with all fields
|
|
path('users/<int:pk>/', SecureUserUpdateView.as_view(), name='secure-user-update'),
|
|
] |