feat(telegram): implement asynchronous Telegram alert system and enhance user verification messaging
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 4m38s

This commit is contained in:
2025-07-27 21:56:59 +05:00
parent 2bc594da9c
commit 9c082aedf2
4 changed files with 123 additions and 12 deletions

View File

@@ -12,6 +12,7 @@ from .views import (
CancelTopupView,
ListWalletTransactionView,
AdminTopupCreateView,
# AlertTestView,
)
urlpatterns = [
@@ -50,4 +51,6 @@ urlpatterns = [
ListWalletTransactionView.as_view(),
name="list-wallet-transactions",
),
# Test tg notification
# path("test-alert/", AlertTestView.as_view(), name="test-alert"),
]