validate hex color strings

This commit is contained in:
jonaswinkler 2021-02-25 11:30:49 +01:00
parent 7cc940a16c
commit c75e30fd28

View File

@ -171,6 +171,12 @@ class TagSerializer(MatchingModelSerializer):
"document_count"
)
def validate_color(self, color):
regex = r"#[0-9a-fA-F]{6}"
if not re.match(regex, color):
raise serializers.ValidationError(_("Invalid color."))
return color
class CorrespondentField(serializers.PrimaryKeyRelatedField):
def get_queryset(self):