Removed tblocker / Fixed trial subscriptions counting

This commit is contained in:
Capybara-z
2025-08-26 18:26:35 +03:00
parent 8e55225724
commit a54310da27
3 changed files with 8 additions and 136 deletions
-4
View File
@@ -1,10 +1,7 @@
from aiohttp.web_urldispatcher import UrlDispatcher
from config import TBLOCKER_WEBHOOK_PATH
from .heleket_payment import heleket_payment_webhook
from .kassai_payment import kassai_payment_webhook
from .tblocker import tblocker_webhook
from .wata_payment import wata_payment_webhook
from utils.modules_loader import load_module_webhooks
@@ -15,7 +12,6 @@ HELEKET_WEBHOOK_PATH = "/heleket/webhook"
async def register_web_routes(router: UrlDispatcher) -> None:
router.add_post(TBLOCKER_WEBHOOK_PATH, tblocker_webhook)
router.add_post(WATA_WEBHOOK_PATH, wata_payment_webhook)
router.add_post(KASSAI_WEBHOOK_PATH, kassai_payment_webhook)
router.add_post(HELEKET_WEBHOOK_PATH, heleket_payment_webhook)