fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
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
+++ b/
src/depot/urls.py
@@ -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'
+ )
+]