mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
28 lines
485 B
PHP
28 lines
485 B
PHP
<?php
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use App\Libraries\MultiDB;
|
|
use Closure;
|
|
use Cookie;
|
|
use Illuminate\Http\Request;
|
|
|
|
class SetWebDb
|
|
{
|
|
/**
|
|
* Handle an incoming request.
|
|
*
|
|
* @param Request $request
|
|
* @param Closure $next
|
|
* @return mixed
|
|
*/
|
|
public function handle($request, Closure $next)
|
|
{
|
|
if (config('ninja.db.multi_db_enabled')) {
|
|
MultiDB::setDB(Cookie::get('db'));
|
|
}
|
|
|
|
return $next($request);
|
|
}
|
|
}
|