Renaming of users in registration, profile and admin app.

This commit is contained in:
2025-09-02 06:13:01 +00:00
parent b9c1fe059c
commit e1e933c756
9 changed files with 232 additions and 21 deletions
+1
View File
@@ -7,4 +7,5 @@ def assert_safe(value: str, *, field: str = "value") -> None:
if not isinstance(value, str) or not value or not _SAFE_RE.match(value):
raise ValueError(f"{field} must match ^[A-Za-z0-9:._~-]+$")
__all__ = ["assert_safe"]