Coverage for users\urls.py: 100%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1from django.urls import include, path
2from .views import UserListView
4urlpatterns = [
5 path('auth/', include('rest_auth.urls')),
6 path('auth/register/', include('rest_auth.registration.urls'), name="register"),
7 path('list/', UserListView.as_view(), name="users_list")
8]