mirror of
https://github.com/mediacms-io/mediacms.git
synced 2024-11-22 16:23:35 +01:00
16 lines
434 B
Python
16 lines
434 B
Python
import re
|
|
|
|
from django.core import validators
|
|
from django.utils.deconstruct import deconstructible
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
@deconstructible
|
|
class ASCIIUsernameValidator(validators.RegexValidator):
|
|
regex = r"^[\w]+$"
|
|
message = _("Enter a valid username. This value may contain only " "English letters and numbers")
|
|
flags = re.ASCII
|
|
|
|
|
|
custom_username_validators = [ASCIIUsernameValidator()]
|