X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/26ae84cfef946f135a2b2ea91e6af4dd05048750..a42fd9db14f15b7a2a838a1bb9ef4eb053e08a62:/src/api/urls.py diff --git a/src/api/urls.py b/src/api/urls.py index b0ee94def..62d4fa7f7 100644 --- a/src/api/urls.py +++ b/src/api/urls.py @@ -10,8 +10,13 @@ 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')), + path('', include('social.api.urls2')), ]