代码提交

This commit is contained in:
wong
2026-01-05 09:34:48 +08:00
parent b4c813311b
commit ce1c434ea8
5 changed files with 177 additions and 153 deletions

View File

@@ -119,6 +119,7 @@ Route::group('v1/', function () {
Route::get('group-push-stats', 'app\cunkebao\controller\workbench\WorkbenchController@getGroupPushStats'); // 获取群发统计数据
Route::get('group-push-history', 'app\cunkebao\controller\workbench\WorkbenchController@getGroupPushHistory'); // 获取推送历史记录列表
Route::get('common-functions', 'app\cunkebao\controller\workbench\CommonFunctionsController@getList'); // 获取常用功能列表
});
// 内容库相关
@@ -162,11 +163,6 @@ Route::group('v1/', function () {
Route::get('userInfoStats', 'app\cunkebao\controller\StatsController@userInfoStats');
});
// 常用功能相关
Route::group('common-functions', function () {
Route::get('list', 'app\cunkebao\controller\CommonFunctionsController@getList'); // 获取常用功能列表
});
// 算力相关
Route::group('tokens', function () {
Route::get('list', 'app\cunkebao\controller\TokensController@getList');

View File

@@ -1,6 +1,6 @@
<?php
namespace app\cunkebao\controller;
namespace app\cunkebao\controller\workbench;
use app\cunkebao\controller\BaseController;
use library\ResponseHelper;