Legimi button!
[redakcja.git] / src / depot / urls.py
diff --git a/src/depot/urls.py b/src/depot/urls.py
new file mode 100644 (file)
index 0000000..9804515
--- /dev/null
@@ -0,0 +1,11 @@
+from django.urls import path
+from . import views
+
+
+urlpatterns = [
+    path(
+        'legimi-publish/<int:book_id>/',
+        views.LegimiPublishView.as_view(),
+        name='depot_legimi_publish'
+    )
+]