27
common/Auth/Fortify/LoginResponse.php
Executable file
27
common/Auth/Fortify/LoginResponse.php
Executable file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
namespace Common\Auth\Fortify;
|
||||
|
||||
use Common\Core\Bootstrap\BootstrapData;
|
||||
use Illuminate\Http\JsonResponse;
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
use Laravel\Fortify\Contracts\LoginResponse as LoginResponseContract;
|
||||
|
||||
class LoginResponse implements LoginResponseContract
|
||||
{
|
||||
public function toResponse($request): JsonResponse
|
||||
{
|
||||
if ($request->get('password') && settings('single_device_login')) {
|
||||
Auth::logoutOtherDevices($request->get('password'));
|
||||
}
|
||||
|
||||
$data = app(BootstrapData::class)
|
||||
->init()
|
||||
->getEncoded();
|
||||
|
||||
return response()->json([
|
||||
'bootstrapData' => $data,
|
||||
'two_factor' => false,
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user