izaac/core/urls.py
Jakub K 16598a03ea
All checks were successful
continuous-integration/drone Build is passing
IZAAC_BASE - modele jobposting, wymagane biblioteki, ustawienia projektu
2023-11-11 21:18:23 +01:00

7 lines
185 B
Python

from django.urls import path, include
urlpatterns = [
path("api/v1/", include('dj_rest_auth.urls')),
path('api/v1/registration/', include('dj_rest_auth.registration.urls')),
]