fix: jssdk add

pull/2712/head
withchao 12 months ago
parent 122bf667df
commit 0e13614fe4

@ -9,7 +9,7 @@ sessionToken:
# Internal address of the MinIO server # Internal address of the MinIO server
internalAddress: localhost:10005 internalAddress: localhost:10005
# External address of the MinIO server, accessible from outside. Supports both HTTP and HTTPS using a domain name # External address of the MinIO server, accessible from outside. Supports both HTTP and HTTPS using a domain name
externalAddress: http://external_ip:10005 externalAddress: http://172.16.8.12:10005
# Flag to enable or disable public read access to the bucket # Flag to enable or disable public read access to the bucket
publicRead: false publicRead: false

@ -12,8 +12,11 @@ type ActiveConversationsReq struct {
type ConversationMsg struct { type ConversationMsg struct {
Conversation *conversation.Conversation `json:"conversation"` Conversation *conversation.Conversation `json:"conversation"`
LastMsg *sdkws.MsgData `json:"lastMsg"` LastMsg *sdkws.MsgData `json:"lastMsg"`
MaxSeq int64 `json:"maxSeq"` User *sdkws.UserInfo
ReadSeq int64 `json:"readSeq"` Friend *sdkws.FriendInfo
Group *sdkws.GroupInfo
MaxSeq int64 `json:"maxSeq"`
ReadSeq int64 `json:"readSeq"`
} }
type ConversationsResp struct { type ConversationsResp struct {

Loading…
Cancel
Save