fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fixes
[wolnelektury.git]
/
src
/
catalogue
/
api
/
views.py
diff --git
a/src/catalogue/api/views.py
b/src/catalogue/api/views.py
index
8b0dc1a
..
885df24
100644
(file)
--- a/
src/catalogue/api/views.py
+++ b/
src/catalogue/api/views.py
@@
-27,7
+27,7
@@
book_tag_categories = ['author', 'epoch', 'kind', 'genre']
class CollectionList(ListAPIView):
class CollectionList(ListAPIView):
- queryset = Collection.objects.
all(
)
+ queryset = Collection.objects.
filter(listed=True
)
serializer_class = serializers.CollectionListSerializer
serializer_class = serializers.CollectionListSerializer
@@
-135,6
+135,9
@@
class BookList(ListAPIView):
name = request.POST.get('name', '')
part_name = request.POST.get('part_name', '')
name = request.POST.get('name', '')
part_name = request.POST.get('part_name', '')
+ project_description = request.POST.get('project_description', '')
+ project_icon = request.POST.get('project_icon', '')
+
_rest, slug = request.POST['book'].rstrip('/').rsplit('/', 1)
book = Book.objects.get(slug=slug)
_rest, slug = request.POST['book'].rstrip('/').rsplit('/', 1)
book = Book.objects.get(slug=slug)
@@
-146,6
+149,8
@@
class BookList(ListAPIView):
bm.name = name
bm.part_name = part_name
bm.index = index
bm.name = name
bm.part_name = part_name
bm.index = index
+ bm.project_description = project_description
+ bm.project_icon = project_icon
bm.file.save(None, request.data['file'], save=False)
bm.save(parts_count=parts_count)
bm.file.save(None, request.data['file'], save=False)
bm.save(parts_count=parts_count)