mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
limit matching options in serializer
[ci skip]
This commit is contained in:
parent
8a907c2868
commit
dbe58672ed
@ -670,6 +670,19 @@ class CustomFieldSerializer(MatchingModelSerializer, serializers.ModelSerializer
|
||||
raise serializers.ValidationError(
|
||||
{"error": "extra_data.default_currency must be a 3-character string"},
|
||||
)
|
||||
if (
|
||||
"matching_algorithm" in attrs
|
||||
and attrs["matching_algorithm"] != CustomField.MATCH_REGEX
|
||||
and "data_type" in attrs
|
||||
and attrs["data_type"]
|
||||
not in [
|
||||
CustomField.FieldDataType.SELECT,
|
||||
CustomField.FieldDataType.BOOL,
|
||||
]
|
||||
):
|
||||
raise serializers.ValidationError(
|
||||
{"error": "Only discrete data types support matching"},
|
||||
)
|
||||
return super().validate(attrs)
|
||||
|
||||
def to_internal_value(self, data):
|
||||
|
Loading…
x
Reference in New Issue
Block a user