Files
nl-jqrl-api/app/Http/Middleware/ValidateSignature.php

23 lines
460 B
PHP
Raw Normal View History

<?php
namespace App\Http\Middleware;
use Illuminate\Routing\Middleware\ValidateSignature as Middleware;
class ValidateSignature extends Middleware
{
/**
2022-08-20 12:46:21 -05:00
* The names of the query string parameters that should be ignored.
*
* @var array<int, string>
*/
2022-08-20 12:46:21 -05:00
protected $except = [
2022-08-15 10:21:08 -05:00
// 'fbclid',
2022-08-15 10:20:30 -05:00
// 'utm_campaign',
// 'utm_content',
2022-08-15 10:21:08 -05:00
// 'utm_medium',
// 'utm_source',
2022-08-15 10:20:30 -05:00
// 'utm_term',
];
}