davide.cucurnia@vola.it
2024-02-01 398fc70ad81e71951105c4a950be0f8c4024bd01
commit | author | age
9f6455 1 <?php
DC 2
3 namespace App\Http\Middleware;
4
5 use Illuminate\Auth\Middleware\Authenticate as Middleware;
6
7 class Authenticate extends Middleware
8 {
9     /**
10      * Get the path the user should be redirected to when they are not authenticated.
11      *
12      * @param  \Illuminate\Http\Request  $request
13      * @return string|null
14      */
15     protected function redirectTo($request)
16     {
17         if (! $request->expectsJson()) {
18             return response('Unauthorized.', 401);
19         }
20     }
21 }