From: Radek Czajka Date: Wed, 31 Aug 2011 13:45:22 +0000 (+0200) Subject: minor fix X-Git-Url: https://git.mdrn.pl/wolnelektury.git/commitdiff_plain/8f98ff35ae8cd6ebe07d73112f8c476011ac78d6 minor fix --- diff --git a/apps/api/handlers.py b/apps/api/handlers.py index f23416751..706e0cdac 100644 --- a/apps/api/handlers.py +++ b/apps/api/handlers.py @@ -83,6 +83,9 @@ class CatalogueHandler(BaseHandler): elif field == 'author': obj[field] = ", ".join(t.name for t in book.tags.filter(category='author')) + elif field == 'parent': + obj[field] = book.parent_id + elif field in ('license', 'license_description', 'source_name', 'technical_editors', 'editors'): f = extra_info.get(field)