accounts: account app qoshildi, tenant uchun sozlandi

This commit is contained in:
behruz-dev
2025-12-05 17:41:13 +05:00
parent d8f4e44102
commit 364a4a8af1
18 changed files with 179 additions and 5 deletions

View File

@@ -0,0 +1 @@
from .response import *

View File

@@ -0,0 +1 @@
from .mixin import ResponseMixin

View File

View File

@@ -0,0 +1,7 @@
# django
from django.core.validators import RegexValidator
uz_phone_validator = RegexValidator(
regex=r"^\+998\d{9}$",
message="The phone_number is invalid. The format should be like this: +998XXXXXXXXX"
)