mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-05-25 06:29:19 +08:00
config file modify
This commit is contained in:
parent
3a01ee9973
commit
cfddc75ccb
@ -165,21 +165,21 @@ type config struct {
|
||||
}
|
||||
Notification struct {
|
||||
GroupCreated struct {
|
||||
conversation Conversation `yaml:"conversation"`
|
||||
offlinePush OfflinePush `yaml:"offlinePush"`
|
||||
defaultTips DefaultTips `yaml:"defaultTips"`
|
||||
Conversation PConversation `yaml:"conversation"`
|
||||
OfflinePush POfflinePush `yaml:"offlinePush"`
|
||||
DefaultTips PDefaultTips `yaml:"defaultTips"`
|
||||
}
|
||||
|
||||
GroupInfoChanged struct {
|
||||
conversation Conversation `yaml:"conversation"`
|
||||
offlinePush OfflinePush `yaml:"offlinePush"`
|
||||
defaultTips DefaultTips `yaml:"defaultTips"`
|
||||
Conversation PConversation `yaml:"conversation"`
|
||||
OfflinePush POfflinePush `yaml:"offlinePush"`
|
||||
DefaultTips PDefaultTips `yaml:"defaultTips"`
|
||||
}
|
||||
|
||||
ApplyJoinGroup struct {
|
||||
conversation Conversation `yaml:"conversation"`
|
||||
offlinePush OfflinePush `yaml:"offlinePush"`
|
||||
defaultTips DefaultTips `yaml:"defaultTips"`
|
||||
Conversation PConversation `yaml:"conversation"`
|
||||
OfflinePush POfflinePush `yaml:"offlinePush"`
|
||||
DefaultTips PDefaultTips `yaml:"defaultTips"`
|
||||
}
|
||||
}
|
||||
Demo struct {
|
||||
@ -200,18 +200,18 @@ type config struct {
|
||||
}
|
||||
}
|
||||
}
|
||||
type Conversation struct {
|
||||
type PConversation struct {
|
||||
ConversationChanged bool `yaml:"conversationChanged"`
|
||||
UnreadCount bool `yaml:"unreadCount"`
|
||||
}
|
||||
|
||||
type OfflinePush struct {
|
||||
type POfflinePush struct {
|
||||
PushSwitch bool `yaml:"switch"`
|
||||
Title string `yaml:"title"`
|
||||
Desc string `yaml:"desc"`
|
||||
Ext string `yaml:"ext"`
|
||||
}
|
||||
type DefaultTips struct {
|
||||
type PDefaultTips struct {
|
||||
Tips string `yaml:"tips"`
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user