Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:rinvex/cortex-foundation into de…
Browse files Browse the repository at this point in the history
…velop

* 'develop' of github.com:rinvex/cortex-foundation:
  enable FrameGuard middleware (#345)
  • Loading branch information
Omranic committed Aug 17, 2023
2 parents ffcf9dd + 44a5c61 commit e9b665c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bootstrap/module.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
declare(strict_types=1);

use Illuminate\Contracts\Http\Kernel;
use Illuminate\Http\Middleware\FrameGuard;
use Illuminate\Http\Middleware\HandleCors;
use Cortex\Foundation\Http\Middleware\TrimWww;
use Illuminate\Http\Middleware\SetCacheHeaders;
Expand Down Expand Up @@ -80,6 +81,7 @@
Route::pushMiddlewareToGroup('web', EncryptCookies::class);
Route::pushMiddlewareToGroup('web', AddQueuedCookiesToResponse::class);
Route::pushMiddlewareToGroup('web', StartSession::class);
Route::pushMiddlewareToGroup('web', FrameGuard::class);
Route::pushMiddlewareToGroup('web', LocalizationRedirect::class);
Route::pushMiddlewareToGroup('web', ShareErrorsFromSession::class);
Route::pushMiddlewareToGroup('web', VerifyCsrfToken::class);
Expand Down

0 comments on commit e9b665c

Please sign in to comment.