Changeset 7304c7f for app/Http/Middleware
- Timestamp:
- 09/27/21 23:25:43 (3 years ago)
- Branches:
- develop, master
- Children:
- 582789f
- Parents:
- 2fc88ec
- Location:
- app/Http/Middleware
- Files:
-
- 5 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
app/Http/Middleware/Authenticate.php
r2fc88ec r7304c7f 16 16 { 17 17 if (! $request->expectsJson()) { 18 return route(' login');18 return route('auth.loginShow'); 19 19 } 20 20 } -
app/Http/Middleware/TrimStrings.php
r2fc88ec r7304c7f 13 13 */ 14 14 protected $except = [ 15 'current_password',16 15 'password', 17 16 'password_confirmation', -
app/Http/Middleware/TrustHosts.php
r2fc88ec r7304c7f 4 4 5 5 use Illuminate\Http\Middleware\TrustHosts as Middleware; 6 use Illuminate\Http\Request; 6 7 7 8 class TrustHosts extends Middleware -
app/Http/Middleware/VerifyCsrfToken.php
r2fc88ec r7304c7f 8 8 { 9 9 /** 10 * Indicates whether the XSRF-TOKEN cookie should be set on the response. 11 * 12 * @var bool 13 */ 14 protected $addHttpCookie = true; 15 16 /** 10 17 * The URIs that should be excluded from CSRF verification. 11 18 *
Note:
See TracChangeset
for help on using the changeset viewer.