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 {
|
Notification struct {
|
||||||
GroupCreated struct {
|
GroupCreated struct {
|
||||||
conversation Conversation `yaml:"conversation"`
|
Conversation PConversation `yaml:"conversation"`
|
||||||
offlinePush OfflinePush `yaml:"offlinePush"`
|
OfflinePush POfflinePush `yaml:"offlinePush"`
|
||||||
defaultTips DefaultTips `yaml:"defaultTips"`
|
DefaultTips PDefaultTips `yaml:"defaultTips"`
|
||||||
}
|
}
|
||||||
|
|
||||||
GroupInfoChanged struct {
|
GroupInfoChanged struct {
|
||||||
conversation Conversation `yaml:"conversation"`
|
Conversation PConversation `yaml:"conversation"`
|
||||||
offlinePush OfflinePush `yaml:"offlinePush"`
|
OfflinePush POfflinePush `yaml:"offlinePush"`
|
||||||
defaultTips DefaultTips `yaml:"defaultTips"`
|
DefaultTips PDefaultTips `yaml:"defaultTips"`
|
||||||
}
|
}
|
||||||
|
|
||||||
ApplyJoinGroup struct {
|
ApplyJoinGroup struct {
|
||||||
conversation Conversation `yaml:"conversation"`
|
Conversation PConversation `yaml:"conversation"`
|
||||||
offlinePush OfflinePush `yaml:"offlinePush"`
|
OfflinePush POfflinePush `yaml:"offlinePush"`
|
||||||
defaultTips DefaultTips `yaml:"defaultTips"`
|
DefaultTips PDefaultTips `yaml:"defaultTips"`
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Demo struct {
|
Demo struct {
|
||||||
@ -200,18 +200,18 @@ type config struct {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
type Conversation struct {
|
type PConversation struct {
|
||||||
ConversationChanged bool `yaml:"conversationChanged"`
|
ConversationChanged bool `yaml:"conversationChanged"`
|
||||||
UnreadCount bool `yaml:"unreadCount"`
|
UnreadCount bool `yaml:"unreadCount"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type OfflinePush struct {
|
type POfflinePush struct {
|
||||||
PushSwitch bool `yaml:"switch"`
|
PushSwitch bool `yaml:"switch"`
|
||||||
Title string `yaml:"title"`
|
Title string `yaml:"title"`
|
||||||
Desc string `yaml:"desc"`
|
Desc string `yaml:"desc"`
|
||||||
Ext string `yaml:"ext"`
|
Ext string `yaml:"ext"`
|
||||||
}
|
}
|
||||||
type DefaultTips struct {
|
type PDefaultTips struct {
|
||||||
Tips string `yaml:"tips"`
|
Tips string `yaml:"tips"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user