server/src/app/Http/Middleware/VerifyCsrfToken.php
author Chloe Laisne <chloe.laisne@gmail.com>
Fri, 22 Jul 2016 18:25:02 +0200
changeset 248 256272c33349
parent 139 8d688175513a
permissions -rw-r--r--
Transcript sentence lick and play Hover sentence style

<?php

namespace CorpusParole\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 = [
        'api/*',
        'proxy/*'
    ];
}