X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/c4309c888873728d417c2964c40cb9d03a89d441..8e8b2c44fc1345b2b4ae2806f2ef5f2187d760c0:/src/catalogue/urls.py diff --git a/src/catalogue/urls.py b/src/catalogue/urls.py index b7625388..2bcba237 100644 --- a/src/catalogue/urls.py +++ b/src/catalogue/urls.py @@ -9,6 +9,7 @@ urlpatterns = [ path("", views.CatalogueView.as_view(), name="catalogue"), path("author//", views.AuthorView.as_view(), name="catalogue_author"), path("book//", views.BookView.as_view(), name="catalogue_book"), + path("book/.json", views.BookAPIView.as_view(), name="catalogue_book_api"), path('terms/epoch/', views.EpochTerms.as_view()), path('terms/kind/', views.KindTerms.as_view()), @@ -16,10 +17,15 @@ urlpatterns = [ path('terms/wluri/', views.WLURITerms.as_view()), path('terms/book_title/', views.BookTitleTerms.as_view()), path('terms/author/', views.AuthorTerms.as_view()), + path('terms/thema/', views.ThemaTerms.as_view()), path('terms/editor/', views.EditorTerms.as_view()), path('wikidata//', views.WikidataView.as_view()), path('publish/author//', views.publish_author, name='catalogue_publish_author'), + path('publish/genre//', views.publish_genre, name='catalogue_publish_genre'), + path('publish/kind//', views.publish_kind, name='catalogue_publish_kind'), + path('publish/epoch//', views.publish_epoch, name='catalogue_publish_epoch'), + path('publish/collection//', views.publish_collection, name='catalogue_publish_collection'), ]