X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/a7f1c123425b68bd1cd9ccd74fd8b048d9b525b1..8505074633ff2e2194b7f845fc84f2040686e570:/src/catalogue/api/views.py diff --git a/src/catalogue/api/views.py b/src/catalogue/api/views.py index 8b0dc1afc..faeeb3c08 100644 --- a/src/catalogue/api/views.py +++ b/src/catalogue/api/views.py @@ -135,6 +135,10 @@ 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', '') + _rest, slug = request.POST['book'].rstrip('/').rsplit('/', 1) book = Book.objects.get(slug=slug) @@ -146,6 +150,8 @@ class BookList(ListAPIView): 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)