X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/26ae84cfef946f135a2b2ea91e6af4dd05048750..131ae407ca583a8a8086cf94c222c85fa3f5be63:/src/api/urls.py?ds=inline diff --git a/src/api/urls.py b/src/api/urls.py index b0ee94def..de3dba77f 100644 --- a/src/api/urls.py +++ b/src/api/urls.py @@ -10,7 +10,11 @@ from . import views urlpatterns1 = [ - path('login/', csrf_exempt(views.LoginView.as_view())), + path('register/', csrf_exempt(views.RegisterView.as_view())), + path('refreshToken/', csrf_exempt(views.RefreshTokenView.as_view())), + path('requestConfirm/', csrf_exempt(views.RequestConfirmView.as_view())), + path('login/', csrf_exempt(views.Login2View.as_view())), + path('me/', views.UserView.as_view()), path('', include('catalogue.api.urls2')), ]