diff --git a/app/api/controller/Game.php b/app/api/controller/Game.php index df492bb..ac25dce 100644 --- a/app/api/controller/Game.php +++ b/app/api/controller/Game.php @@ -225,33 +225,6 @@ class Game extends MobileBase ]); } - public function betRebet(Request $request): Response - { - $response = $this->initializeMobile($request); - if ($response !== null) { - return $response; - } - return $this->mobileError(3001, 'Current process does not allow this operation'); - } - - public function autoBetCreate(Request $request): Response - { - $response = $this->initializeMobile($request); - if ($response !== null) { - return $response; - } - return $this->mobileError(3001, 'Current process does not allow this operation'); - } - - public function autoBetStop(Request $request): Response - { - $response = $this->initializeMobile($request); - if ($response !== null) { - return $response; - } - return $this->mobileError(3001, 'Current process does not allow this operation'); - } - public function betMyOrders(Request $request): Response { $response = $this->initializeMobile($request); diff --git a/config/route.php b/config/route.php index 118df95..40eb92c 100644 --- a/config/route.php +++ b/config/route.php @@ -129,9 +129,6 @@ Route::get('/api/game/dictionaryList', [\app\api\controller\Game::class, 'dictio Route::get('/api/game/periodHistory', [\app\api\controller\Game::class, 'periodHistory']); Route::get('/api/game/periodCurrent', [\app\api\controller\Game::class, 'periodCurrent']); Route::post('/api/game/betPlace', [\app\api\controller\Game::class, 'betPlace']); -Route::post('/api/game/betRebet', [\app\api\controller\Game::class, 'betRebet']); -Route::post('/api/game/autoBetCreate', [\app\api\controller\Game::class, 'autoBetCreate']); -Route::post('/api/game/autoBetStop', [\app\api\controller\Game::class, 'autoBetStop']); Route::get('/api/game/betMyOrders', [\app\api\controller\Game::class, 'betMyOrders']); Route::get('/api/wallet/balanceSummary', [\app\api\controller\Wallet::class, 'balanceSummary']);