🐛(back) allow ASCII characters in user sub field

All ASCII characters are allowed in a sub, we change the sub validator
to reflect this.
This commit is contained in:
Manuel Raynaud
2025-08-29 15:59:06 +02:00
committed by GitHub
parent 8d42149304
commit 09de014a43
7 changed files with 55 additions and 20 deletions

View File

@@ -0,0 +1,9 @@
"""Custom validators for the core app."""
from django.core.exceptions import ValidationError
def sub_validator(value):
"""Validate that the sub is ASCII only."""
if not value.isascii():
raise ValidationError("Enter a valid sub. This value should be ASCII only.")