diff --git a/app/api/controller/IndexController.php b/app/api/controller/IndexController.php index 2b6476f28..f27c04a00 100755 --- a/app/api/controller/IndexController.php +++ b/app/api/controller/IndexController.php @@ -193,6 +193,7 @@ class IndexController extends BaseApiController public function notifyAuthentication() { $parmas = Request()->param(); + halt($parmas); Log::error('notifyAuthentication', $parmas); if ($parmas) { Company::where('id',$parmas['id'])->update(['is_authentication'=>1]); diff --git a/app/api/route/index.php b/app/api/route/index.php new file mode 100644 index 000000000..768ad0b34 --- /dev/null +++ b/app/api/route/index.php @@ -0,0 +1,7 @@ +prefix('api'); \ No newline at end of file diff --git a/route/app.php b/route/app.php index 995d38958..5c74be492 100755 --- a/route/app.php +++ b/route/app.php @@ -35,6 +35,4 @@ Route::rule('crontab', function () { }); Route::post('/notify_url', IndexController::class . '@notifyUrl'); -Route::post('/v1/notify_property',IndexController::class . '@notifyProperty'); -Route::any('/v1/notify_authentication',IndexController::class . '@notifyAuthentication'); Route::get('/api/junziqian/download_file',JunziqianController::class . '@download_file'); \ No newline at end of file