提交 cb45a841 编写于 作者: DCloud_JSON's avatar DCloud_JSON

更新 没有绑定手机号码不能入群规则,排除角色为:uni-im-admin、staff

上级 97ada72b
......@@ -55,10 +55,13 @@ module.exports = {
throw new Error(res.errMsg)
}
}
// 5. 判断用户是否已经绑定手机号
let res3 = await db.collection('uni-id-users').where({_id:userInfo.uid}).get()
if(!res3.data[0].mobile_confirmed){
throw new Error('你的账号未绑定手机号,不能加入群聊')
// 5. 判断用户是否已经绑定手机号,系统管理员除外
console.log('userInfo',userInfo);
if(!userInfo.role.includes('uni-im-admin') && !userInfo.role.includes('staff')){
let res3 = await db.collection('uni-id-users').where({_id:userInfo.uid}).get()
if(!res3.data[0].mobile_confirmed){
throw new Error('你的账号未绑定手机号,不能加入群聊')
}
}
} else {
throw new Error('非法参数')
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册