X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/0dd00c51dfdbda93e1b9c4612477cd05109d4517..9ff5f2ac22360b1ff3ef2473c15d4acfd1e7769b:/src/redakcja/api/urls.py?ds=inline diff --git a/src/redakcja/api/urls.py b/src/redakcja/api/urls.py new file mode 100644 index 00000000..7f6e1bb6 --- /dev/null +++ b/src/redakcja/api/urls.py @@ -0,0 +1,9 @@ +from django.urls import include, path +from . import views + + +urlpatterns = [ + path('documents/', include('documents.api.urls')), + + path('me/', views.MeView.as_view()), +]