Currently the product class is serialized as a slug while the product category is serialized as a name.
I patched my ProductSerializer as:
class ProductSerializer(oscarapi.serializers.product.ProductSerializer):
product_class = serializers.SlugRelatedField(
slug_field="name",
queryset=oscarapi.serializers.product.ProductClass.objects,
allow_null=True,
)
so both are exposed as names. I don't know if it's worth a PR as it may break current uses?
Currently the product class is serialized as a slug while the product category is serialized as a name.
I patched my
ProductSerializeras:so both are exposed as names. I don't know if it's worth a PR as it may break current uses?