server/src/app/Http/Middleware/VerifyCsrfToken.php
author ymh <ymh.work@gmail.com>
Thu, 13 Oct 2016 13:01:12 +0200
changeset 328 04e728651a48
parent 139 8d688175513a
permissions -rw-r--r--
add reference to backRootUrl in common module

<?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/*'
    ];
}