Remove sync fields and share fields between book and author

This commit is contained in:
Mouse Reeve
2020-12-21 12:17:18 -08:00
parent aac264c998
commit cfa1a1b42c
6 changed files with 84 additions and 49 deletions

View File

@@ -289,7 +289,6 @@ def upload_cover(request, book_id):
return redirect('/book/%d' % book.id)
book.cover = form.files['cover']
book.sync_cover = False
book.save()
outgoing.handle_update_book(request.user, book)