mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
tag and set private tips
This commit is contained in:
parent
0e27b302bc
commit
a16a75230c
@ -555,13 +555,14 @@ notification:
|
|||||||
conversation:
|
conversation:
|
||||||
reliabilityLevel: 2
|
reliabilityLevel: 2
|
||||||
unreadCount: true
|
unreadCount: true
|
||||||
offlinePush:
|
offlinePush:
|
||||||
switch: true
|
switch: true
|
||||||
title: "conversation was set to private "
|
title: "burn after reading"
|
||||||
desc: "conversation was set to private "
|
desc: "burn after reading"
|
||||||
ext: "conversation was set to private "
|
ext: "burn after reading"
|
||||||
defaultTips:
|
defaultTips:
|
||||||
tips: "conversation was set to private "
|
openTips: "burn after reading was opened"
|
||||||
|
closeTips: "burn after reading was closed"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -48,8 +48,19 @@ func ConversationSetPrivateNotification(operationID, sendID, recvID string, isPr
|
|||||||
IsPrivate: isPrivateChat,
|
IsPrivate: isPrivateChat,
|
||||||
}
|
}
|
||||||
var tips open_im_sdk.TipsComm
|
var tips open_im_sdk.TipsComm
|
||||||
strMap := map[bool]string{true: "true", false: "false"}
|
var tipsMsg string
|
||||||
tips.DefaultTips = config.Config.Notification.ConversationSetPrivate.DefaultTips.Tips + strMap[isPrivateChat] + " by " + sendID
|
//var senderName string
|
||||||
|
//senderName, err := im_mysql_model.GetUserNameByUserID(sendID)
|
||||||
|
//if err != nil {
|
||||||
|
// log.NewError(operationID, utils.GetSelfFuncName(), err.Error())
|
||||||
|
// senderName = sendID
|
||||||
|
//}
|
||||||
|
if isPrivateChat == true {
|
||||||
|
tipsMsg = config.Config.Notification.ConversationSetPrivate.DefaultTips.OpenTips
|
||||||
|
} else {
|
||||||
|
tipsMsg = config.Config.Notification.ConversationSetPrivate.DefaultTips.CloseTips
|
||||||
|
}
|
||||||
|
tips.DefaultTips = tipsMsg
|
||||||
SetConversationNotification(operationID, sendID, recvID, constant.ConversationPrivateChatNotification, conversationSetPrivateTips, tips)
|
SetConversationNotification(operationID, sendID, recvID, constant.ConversationPrivateChatNotification, conversationSetPrivateTips, tips)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user