mirror of
https://github.com/suitenumerique/docs.git
synced 2026-05-12 18:06:58 +02:00
10 lines
282 B
Python
10 lines
282 B
Python
"""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.")
|