|
@@ -91,7 +91,9 @@ class HomeController extends Controller
|
|
*/
|
|
*/
|
|
public function user_detail(Request $request){
|
|
public function user_detail(Request $request){
|
|
try {
|
|
try {
|
|
- $res = $this->homeService->user_detail($request->user_id);
|
|
|
|
|
|
+ $param['user_id'] = $request->user_id;
|
|
|
|
+ $param['tencent_im_user_id'] = $request->tencent_im_user_id;
|
|
|
|
+ $res = $this->homeService->user_detail($param);
|
|
}catch (AuthException $exception){
|
|
}catch (AuthException $exception){
|
|
return $this->response->errorUnauthorized($exception->getMessage());
|
|
return $this->response->errorUnauthorized($exception->getMessage());
|
|
}catch (\Exception $exception){
|
|
}catch (\Exception $exception){
|