mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 21:27:49 +02:00
Extend the bookshelf implementation
This commit is contained in:
7
ram/bookshelf/urls.py
Normal file
7
ram/bookshelf/urls.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from django.urls import path
|
||||
from bookshelf.views import BookList, BookGet
|
||||
|
||||
urlpatterns = [
|
||||
path("book/list", BookList.as_view()),
|
||||
path("book/get/<str:uuid>", BookGet.as_view()),
|
||||
]
|
Reference in New Issue
Block a user