1
0
mirror of synced 2024-11-22 04:56:06 +03:00

add MaxCharsCount in channel settings

This commit is contained in:
DmitryZagorulko 2018-12-05 10:57:45 +03:00
parent 2647ea0460
commit 64cfb815df
3 changed files with 11 additions and 8 deletions

View File

@ -74,6 +74,7 @@ func (c *MgClient) TransportChannels(request Channels) ([]ChannelListItem, int,
// Editing: ChannelFeatureBoth,
// Quoting: ChannelFeatureReceive,
// Deleting: ChannelFeatureSend,
// MaxCharsCount: 2000,
// },
// Product: Product{
// Creating: ChannelFeatureSend,

View File

@ -44,10 +44,11 @@ func TestMgClient_ActivateTransportChannel(t *testing.T) {
Read: ChannelFeatureReceive,
},
Text: ChannelSettingsText{
Creating: ChannelFeatureBoth,
Editing: ChannelFeatureSend,
Quoting: ChannelFeatureReceive,
Deleting: ChannelFeatureBoth,
Creating: ChannelFeatureBoth,
Editing: ChannelFeatureSend,
Quoting: ChannelFeatureReceive,
Deleting: ChannelFeatureBoth,
MaxCharsCount: 2000,
},
Product: Product{
Creating: ChannelFeatureSend,

View File

@ -96,10 +96,11 @@ type Status struct {
// ChannelSettingsText struct
type ChannelSettingsText struct {
Creating string `json:"creating"`
Editing string `json:"editing"`
Quoting string `json:"quoting"`
Deleting string `json:"deleting"`
Creating string `json:"creating"`
Editing string `json:"editing"`
Quoting string `json:"quoting"`
Deleting string `json:"deleting"`
MaxCharsCount uint16 `json:"max_chars_count"`
}
// ChannelSettingsFilesBase struct