seven 1 settimana fa
parent
commit
988abbc655
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      routes/api.php

+ 1 - 1
routes/api.php

@@ -30,7 +30,7 @@ Route::prefix('/issue')->group(function () {
 
 Route::get('/test', [Home::class, 'test']);
 Route::prefix('/pay')->group(function () {
-    Route::get("/notify", [Pay::class, 'notifyHandle']);
+    Route::post("/notify", [Pay::class, 'notifyHandle']);
 });