diff --git a/api/products/views.py b/api/products/views.py index 972398e..de71840 100644 --- a/api/products/views.py +++ b/api/products/views.py @@ -327,7 +327,7 @@ class ProductPropertyResource(BaseResource): class CodeBatchResource(BaseResource): tenant = ForeignKey(TenantResource, 'tenant', null=True, blank=True) - verification_model = ForeignKey(VerificationModelResource, 'verification_model', null=True, blank=True) + verification_model = ForeignKey(VerificationModelResource, 'verification_model', null=True, blank=True, full=True) class Meta: queryset = CodeBatch.objects.all().order_by('-pk') resource_name = 'code-batch'