update: api version

This commit is contained in:
v2board
2023-06-12 02:32:49 +08:00
parent 32eaf301fe
commit 4c97d7e429
74 changed files with 449 additions and 496 deletions

View File

@ -0,0 +1,23 @@
<?php
namespace App\Http\Routes\V1;
use Illuminate\Contracts\Routing\Registrar;
class GuestRoute
{
public function map(Registrar $router)
{
$router->group([
'prefix' => 'guest'
], function ($router) {
// Plan
$router->get ('/plan/fetch', 'V1\\Guest\\PlanController@fetch');
// Telegram
$router->post('/telegram/webhook', 'V1\\Guest\\TelegramController@webhook');
// Payment
$router->match(['get', 'post'], '/payment/notify/{method}/{uuid}', 'V1\\Guest\\PaymentController@notify');
// Comm
$router->get ('/comm/config', 'V1\\Guest\\CommController@config');
});
}
}