X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/26ae84cfef946f135a2b2ea91e6af4dd05048750..ee0b934d5fe3749124ae86950f05145ee20cef16:/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')),
 ]