Commit 9ef63e55 by Bill Filler

remove id from list of exposed fields

parent 0f500cb9
......@@ -19,7 +19,7 @@ class JournalSerializer(serializers.ModelSerializer):
class Meta(object):
model = Journal
fields = ('id', 'uuid', 'partner', 'title', 'price', 'currency', 'sku', 'expires')
fields = ('uuid', 'partner', 'title', 'price', 'currency', 'sku', 'expires')
class JournalBundleSerializer(serializers.ModelSerializer):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment