파티 초대 거절시 멤버 아웃 메시지 보냄

This commit is contained in:
2023-11-06 17:00:23 +09:00
parent 99c10986d6
commit 21ec68d27e

View File

@ -815,4 +815,12 @@ func (gp *groupParty) DenyPartyInvitation(ctx wshandler.ApiCallContext) {
rh: gp.rh,
}
gd.removeMember(mid)
gp.sendUpstreamMessage(&wshandler.UpstreamMessage{
Target: "#" + gd.strid(),
Body: bson.M{
gd.tid(mid): bson.M{},
},
Tag: []string{"MemberDocFull"},
})
}