Add phone verification logic

This commit is contained in:
2022-09-24 13:41:49 +03:00
parent e10b2e0138
commit 44da6faadd
6 changed files with 139 additions and 7 deletions

View File

@@ -1,6 +1,10 @@
from django.apps import AppConfig
from .models import PhoneVerificationService
class AccountConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'account'
def ready(self):
PhoneVerificationService.create()