Add admin notifications for promos and non-YK payments

This commit is contained in:
Machka Pasla
2025-07-11 19:28:45 +07:00
parent 0e84a480fc
commit 68459a7075
6 changed files with 48 additions and 1 deletions
+15
View File
@@ -177,3 +177,18 @@ async def notify_admin_new_payment(bot: Bot, settings: Settings, i18n: JsonI18n,
amount=f"{amount:.2f}",
currency=currency_symbol,
)
async def notify_admin_promo_activation(bot: Bot, settings: Settings,
i18n: JsonI18n, user_id: int,
code: str,
bonus_days: int) -> None:
await notify_admins(
bot,
settings,
i18n,
"admin_promo_activation_notification",
user_id=user_id,
code=code,
bonus_days=bonus_days,
)