PPPPPPP hace 1 mes
padre
commit
4bf688d0f4

+ 1 - 0
.gitignore

@@ -1,2 +1,3 @@
 .idea
 .env
+vendor

+ 1 - 1
app/Game/LogGamecardClick.php

@@ -71,7 +71,7 @@ class LogGamecardClick extends Model
                 if (!isset($result[$game->brand])) {
                     $result[$game->brand] = [];
                 }
-                if (count($result[$game->brand]) < 16) {
+                if (count($result[$game->brand]) < 15) {
                     $result[$game->brand][] = $game->id;
                 }
             }

La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 9 - 1
app/Http/Controllers/Game/JiliSimController.php


+ 2 - 1
app/Http/Controllers/Game/PPSimController.php

@@ -100,7 +100,8 @@ class PPSimController extends Controller
         $api_url='https://'.$host;
         $cdn_url='https://'.$configurl['source'];
         $web_url=env('APP_URL');
-        if($userid==80001131){
+
+        if($userid==80000140){
             $host='test.pgn-nmu2nd.com';
             $api_url='https://test.pgn-nmu2nd.com';
             $cdn_url='https://test.pgn-nmu2nd.com';

+ 4 - 2
routes/game.php

@@ -214,11 +214,9 @@ Route::group([
     $route->any('/forgetPass', 'Game\LoginController@forgetPassword');
 
     $route->any('/routes', 'Game\WebRouteController@Routes');
-    $route->any('/getRegisterGold', 'Game\WebRouteController@getRegisterGold');
     $route->any('/pageModules/{id}', 'Game\WebPageModuleController@PageModules');
     $route->any('/gameList', 'Game\WebPageModuleController@GameList');
     $route->any('/actList', 'Game\ActivityController@List');
-    $route->any('/igt/lunch', 'Game\IgtSimController@gameLunch');
 });
 
 
@@ -227,6 +225,10 @@ Route::group([
     'middleware' => ['checkGameLogin', 'mustGameLogin']
 
 ], function (\Illuminate\Routing\Router $route) {
+
+    $route->any('/igt/lunch', 'Game\IgtSimController@gameLunch');
+    $route->any('/getRegisterGold', 'Game\WebRouteController@getRegisterGold');
+
     $route->any('/evoplay/lunch', 'Game\EvoplayController@gameLunch');
     $route->any('/lucky/lunch', 'Game\LuckyStreakController@gameLunch');
 

Algunos archivos no se mostraron porque demasiados archivos cambiaron en este cambio