Is it possible to include djoser urls and custom model urls in one querystring?

urlpatterns = [
    path('users/', include('users.urls')),
    path('users/', include('djoser.urls')),
    path('users/', include('djoser.urls.jwt')),
]

it gives me error when I try to include djoser.urls and users.urls in one path. Are there any options to do this?

Back to Top