mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-05 05:12:45 +08:00
* fix: GroupApplicationAcceptedNotification * fix: GroupApplicationAcceptedNotification * fix: NotificationUserInfoUpdate * cicd: robot automated Change * fix: component * fix: getConversationInfo * feat: cron task * feat: cron task * feat: cron task * feat: cron task * feat: cron task * fix: minio config url recognition error * update gomake version * update gomake version * conversation version incremental * GetOwnerConversation * fix: change incremental syncer router name. * fix: GetMsgDocModelByIndex bug * update go.mod --------- Co-authored-by: withchao <withchao@users.noreply.github.com> Co-authored-by: Gordon <46924906+FGadvancer@users.noreply.github.com>
19 lines
596 B
Go
19 lines
596 B
Go
package database
|
|
|
|
const (
|
|
BlackName = "black"
|
|
ConversationName = "conversation"
|
|
FriendName = "friend"
|
|
FriendVersionName = "friend_version"
|
|
FriendRequestName = "friend_request"
|
|
GroupName = "group"
|
|
GroupMemberName = "group_member"
|
|
GroupMemberVersionName = "group_member_version"
|
|
GroupJoinVersionName = "group_join_version"
|
|
ConversationVersionName = "conversation_version"
|
|
GroupRequestName = "group_request"
|
|
LogName = "log"
|
|
ObjectName = "s3"
|
|
UserName = "user"
|
|
)
|