This commit is contained in:
root 2019-12-27 15:28:03 +08:00
parent d3bc2c7d12
commit 4864ac7ea8
2 changed files with 7 additions and 0 deletions

View File

@ -54,4 +54,10 @@ class LoginController extends Controller
}
header('Location:' . $location);
}
public function check (Request $request) {
return response([
'data' => $request->session()->get('id') ? true : false
]);
}
}

View File

@ -106,6 +106,7 @@ Route::prefix('v1')
// Login
Route::post('login', 'Passport\\LoginController@index');
Route::get ('token2Login', 'Passport\\LoginController@token2Login');
Route::get ('check', 'Passport\\LoginController@check');
// Forget
Route::post('forget', 'Passport\\ForgetController@index');
});