no message
This commit is contained in:
@@ -831,31 +831,6 @@ class UsersController extends AbstractController
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @api {get} api/users/ws/exist 15. websocket是否存在
|
||||
*
|
||||
* @apiDescription 查询websocket连接是否存在
|
||||
* @apiVersion 1.0.0
|
||||
* @apiGroup users
|
||||
* @apiName ws__exist
|
||||
*
|
||||
* @apiSuccess {Number} ret 返回状态码(1存在、0不存在)
|
||||
* @apiSuccess {String} msg 返回信息(错误描述)
|
||||
* @apiSuccess {Object} data 返回数据(同"获取我的信息"接口)
|
||||
*/
|
||||
public function ws__exist()
|
||||
{
|
||||
$fd = Request::header('fd');
|
||||
if (empty($fd)) {
|
||||
return Base::retError('empty');
|
||||
}
|
||||
if (WebSocket::whereFd($fd)->exists()) {
|
||||
return Base::retSuccess('success');
|
||||
} else {
|
||||
return Base::retError('not exist');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @api {get} api/users/meeting/open 16. 【会议】创建会议、加入会议
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user