server/src/app/Http/Middleware/VerifyCsrfToken.php
author Chloe Laisne <chloe.laisne@gmail.com>
Mon, 17 Oct 2016 22:21:07 +0530
changeset 349 74bbf705a5ca
parent 139 8d688175513a
permissions -rw-r--r--
Quickfix css

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