2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-30 04:26:44 +00:00

Perform unique checks for InvenTreeModelSerializer in DRF

- Prevents ValidationError from throwing in the wrong spot and not being handled
This commit is contained in:
Oliver 2021-06-21 11:10:29 +10:00
parent 5198c5f9fa
commit 908039e1db

View File

@ -50,6 +50,7 @@ class InvenTreeModelSerializer(serializers.ModelSerializer):
# Now ensure the underlying model is correct
instance = self.Meta.model(**data)
instance.validate_unique()
instance.clean()
return data