OnTheFlySerializer should inherit from the user defined resource

This commit is contained in:
Alen Mujezinovic 2012-02-21 12:41:24 +00:00
parent 54a02c1fb9
commit b9f0054ae2

View File

@ -146,8 +146,10 @@ class Serializer(object):
# then the second element of the tuple is the fields to
# set on the related serializer
if isinstance(info, (list, tuple)):
class OnTheFlySerializer(Serializer):
fields = info
# We can only preserve all the (serialization) methods from the resource
# class if we inherit from the resource, not if we inherit from the
# `Serializer` class. Gotta love dynamic languages.
OnTheFlySerializer = type('OnTheFlySerializer', (self.__class__,), {'fields': info})
return OnTheFlySerializer
# If an element in `fields` is a 2-tuple of (str, Serializer)