1
0
Эх сурвалжийг харах

Use same json error format as Mastodon

As documented in the Mastodon API ( https://docs.joinmastodon.org/entities/error/ ),   error responses use "error" as the key for the value, instead of Laravel's default (which is "message")
Wv5twkFEKh54vo4tta9yu7dHa3 4 жил өмнө
parent
commit
a19d4d5418

+ 5 - 0
app/Exceptions/Handler.php

@@ -48,6 +48,11 @@ class Handler extends ExceptionHandler
      */
      */
     public function render($request, Throwable $exception)
     public function render($request, Throwable $exception)
     {
     {
+        if ($request->wantsJson())
+            return response()->json(
+                ['error' => $exception->getMessage()],
+                method_exists($exception, 'getStatusCode') ? $exception->getStatusCode() : 500
+            );
         return parent::render($request, $exception);
         return parent::render($request, $exception);
     }
     }
 }
 }