Changed work of shelf books

This commit is contained in:
maciejrusek
2026-03-22 14:19:17 +01:00
parent 5722f0b7ea
commit aeab43aa8a
23 changed files with 307 additions and 140 deletions

View File

@@ -0,0 +1,10 @@
from django.urls import path
from apps.shelf_books.views import ShelfBooks, SelectedShelfBook
urlpatterns = [
path("shelves/<int:shelf_id>/books/", ShelfBooks.as_view()),
path("shelves/<int:shelf_id>/books/<int:book_id>/", SelectedShelfBook.as_view())
]