From 4c68e5439101cfb9eac07e86b906a125d9f2b0ce Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Fri, 25 Aug 2023 14:43:41 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/controller/IndexController.php | 1 + app/api/route/index.php | 7 +++++++ route/app.php | 2 -- 3 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 app/api/route/index.php 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