]> BookStack Code Mirror - bookstack/blobdiff - app/Exceptions/Handler.php
Add socialite authentication for okta
[bookstack] / app / Exceptions / Handler.php
index 5260eb6cd88b95a5b75380eaa500ad7a33483e28..1dc5094e30fe1e6f350c2d37e058477d49cbf7ab 100644 (file)
@@ -103,4 +103,16 @@ class Handler extends ExceptionHandler
 
         return redirect()->guest('login');
     }
+
+    /**
+     * Convert a validation exception into a JSON response.
+     *
+     * @param  \Illuminate\Http\Request  $request
+     * @param  \Illuminate\Validation\ValidationException  $exception
+     * @return \Illuminate\Http\JsonResponse
+     */
+    protected function invalidJson($request, ValidationException $exception)
+    {
+        return response()->json($exception->errors(), $exception->status);
+    }
 }