mirror of
https://github.com/exane/not-gwent-online
synced 2025-07-27 20:33:28 +00:00
add website structure
This commit is contained in:
.gitignore
site
client
public
server
.env.exampleartisan
app
Console
Events
Exceptions
Http
Jobs
Listeners
Providers
User.phpbootstrap
composer.jsoncomposer.lockconfig
app.phpauth.phpbroadcasting.phpcache.phpcompile.phpdatabase.phpfilesystems.phpmail.phpqueue.phpservices.phpsession.phpview.php
database
phpspec.ymlphpunit.xmlserver.phpstorage
tests
17
site/server/app/Http/Middleware/VerifyCsrfToken.php
Executable file
17
site/server/app/Http/Middleware/VerifyCsrfToken.php
Executable file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace Gwent\Http\Middleware;
|
||||
|
||||
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier;
|
||||
|
||||
class VerifyCsrfToken extends BaseVerifier
|
||||
{
|
||||
/**
|
||||
* The URIs that should be excluded from CSRF verification.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $except = [
|
||||
//
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user