update: server/getServerLog to stat/getTrafficLog

This commit is contained in:
tokumeikoi
2022-03-05 00:27:43 +08:00
parent d0cab99ae4
commit 98b12205f7
10 changed files with 32 additions and 146 deletions

View File

@ -48,7 +48,6 @@ class UserRoute
$router->post('/ticket/withdraw', 'User\\TicketController@withdraw');
// Server
$router->get ('/server/fetch', 'User\\ServerController@fetch');
$router->get ('/server/getServerLogs', 'User\\ServerController@getServerLogs');
// Coupon
$router->post('/coupon/check', 'User\\CouponController@check');
// Telegram
@ -59,6 +58,8 @@ class UserRoute
// Knowledge
$router->get ('/knowledge/fetch', 'User\\KnowledgeController@fetch');
$router->get ('/knowledge/getCategory', 'User\\KnowledgeController@getCategory');
// Stat
$router->get ('/stat/getTrafficLog', 'User\\StatController@getTrafficLog');
});
}
}