1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-07-10 10:40:03 +08:00

Merge branch 'develop' into demo

This commit is contained in:
koogua 2021-04-29 18:03:49 +08:00
commit 763a456406

View File

@ -3,7 +3,6 @@
namespace App\Http\Api\Controllers;
use App\Services\Logic\Reward\OptionList as RewardOptionList;
use App\Services\Logic\User\Console\NotifyStats as NotifyStatsService;
use App\Services\Logic\Vip\OptionList as VipOptionList;
use App\Services\Service as AppService;
use App\Traits\Response as ResponseTrait;
@ -106,16 +105,4 @@ class PublicController extends Controller
return $this->jsonSuccess(['options' => $options]);
}
/**
* @Get("/notify/stats", name="home.notify_stats")
*/
public function notifyStatsAction()
{
$service = new NotifyStatsService();
$stats = $service->handle();
return $this->jsonSuccess(['stats' => $stats]);
}
}