X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/8505074633ff2e2194b7f845fc84f2040686e570..edf01dc493de62acf2abf93acfcc023a0877439f:/src/catalogue/api/views.py diff --git a/src/catalogue/api/views.py b/src/catalogue/api/views.py index faeeb3c08..885df24aa 100644 --- 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): - queryset = Collection.objects.all() + queryset = Collection.objects.filter(listed=True) serializer_class = serializers.CollectionListSerializer @@ -135,9 +135,8 @@ class BookList(ListAPIView): name = request.POST.get('name', '') part_name = request.POST.get('part_name', '') - project_data = request.POST.get('project', {}) - project_description = project_data.get('description', '') - project_icon = project_data.get('icon', '') + 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)