Respond empty object

This commit is contained in:
Koozza 2021-02-24 12:01:28 +01:00 committed by GitHub
parent 72e45815a8
commit 6e020afada
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -31,6 +31,6 @@ class TriggerEventController extends Controller
StatisticsLogger::apiMessage($request->appId); StatisticsLogger::apiMessage($request->appId);
} }
return $request->json()->all(); return (object) [];
} }
} }