14 lines
331 B
PHP
14 lines
331 B
PHP
<?php
|
|
|
|
/**
|
|
* Notification Module Routes
|
|
*
|
|
* This file is automatically loaded by ModuleLoader.
|
|
* Define your notification management routes here.
|
|
*
|
|
* @var RouteCollection $routes
|
|
*/
|
|
|
|
// Telegram webhook route
|
|
$routes->post('api/telegram/webhook', '\App\Modules\Notification\Controllers\TelegramWebhookController::index');
|