mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +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:
parent
5198c5f9fa
commit
908039e1db
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user