mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-24 02:14:21 -04:00
* Cleanup for settings remove from entities * Fixes for saving and transforming company settings * CompanySettingsSaver * Add Cors
20 lines
404 B
PHP
20 lines
404 B
PHP
<?php
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use Closure;
|
|
|
|
class Cors
|
|
{
|
|
|
|
public function handle($request, Closure $next)
|
|
{
|
|
|
|
return $next($request)
|
|
->header('Access-Control-Allow-Origin', '*')
|
|
->header('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE, OPTIONS')
|
|
->header('Access-Control-Allow-Headers', 'X-Requested-With, Content-Type, X-Token-Auth, Authorization');
|
|
|
|
}
|
|
|
|
} |