mirror of
https://github.com/BEDOLAGA-DEV/remnawave-bedolaga-telegram-bot.git
synced 2026-02-27 23:00:53 +00:00
feat: show all active webhook endpoints in startup log
Added missing webhook endpoints to the startup section: Platega, CloudPayments, Kassa.ai, and RemnaWave webhook.
This commit is contained in:
8
main.py
8
main.py
@@ -686,8 +686,16 @@ async def main():
|
||||
webhook_lines.append(f'WATA: {_fmt(settings.WATA_WEBHOOK_PATH)}')
|
||||
if settings.is_heleket_enabled():
|
||||
webhook_lines.append(f'Heleket: {_fmt(settings.HELEKET_WEBHOOK_PATH)}')
|
||||
if settings.is_platega_enabled():
|
||||
webhook_lines.append(f'Platega: {_fmt(settings.PLATEGA_WEBHOOK_PATH)}')
|
||||
if settings.is_cloudpayments_enabled():
|
||||
webhook_lines.append(f'CloudPayments: {_fmt(settings.CLOUDPAYMENTS_WEBHOOK_PATH)}')
|
||||
if settings.is_freekassa_enabled():
|
||||
webhook_lines.append(f'Freekassa: {_fmt(settings.FREEKASSA_WEBHOOK_PATH)}')
|
||||
if settings.is_kassa_ai_enabled():
|
||||
webhook_lines.append(f'Kassa.ai: {_fmt(settings.KASSA_AI_WEBHOOK_PATH)}')
|
||||
if settings.is_remnawave_webhook_enabled():
|
||||
webhook_lines.append(f'RemnaWave: {_fmt(settings.REMNAWAVE_WEBHOOK_PATH)}')
|
||||
|
||||
timeline.log_section(
|
||||
'Активные webhook endpoints',
|
||||
|
||||
Reference in New Issue
Block a user