Merge pull request #60 from DmitryZagorulko/master
add max chars count in channel settings
This commit is contained in:
commit
8dff7e5f41
2
go.mod
2
go.mod
@ -45,7 +45,7 @@ require (
|
|||||||
github.com/pkg/errors v0.8.0
|
github.com/pkg/errors v0.8.0
|
||||||
github.com/pmezard/go-difflib v1.0.0 // indirect
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
||||||
github.com/retailcrm/api-client-go v1.1.0
|
github.com/retailcrm/api-client-go v1.1.0
|
||||||
github.com/retailcrm/mg-transport-api-client-go v1.1.17
|
github.com/retailcrm/mg-transport-api-client-go v1.1.18
|
||||||
github.com/smartystreets/assertions v0.0.0-20180820201707-7c9eb446e3cf // indirect
|
github.com/smartystreets/assertions v0.0.0-20180820201707-7c9eb446e3cf // indirect
|
||||||
github.com/smartystreets/goconvey v0.0.0-20180222194500-ef6db91d284a // indirect
|
github.com/smartystreets/goconvey v0.0.0-20180222194500-ef6db91d284a // indirect
|
||||||
github.com/stevvooe/resumable v0.0.0-20180830230917-22b14a53ba50 // indirect
|
github.com/stevvooe/resumable v0.0.0-20180830230917-22b14a53ba50 // indirect
|
||||||
|
2
go.sum
2
go.sum
@ -97,6 +97,8 @@ github.com/retailcrm/api-client-go v1.1.0 h1:APPO6ccJAeMV7Jz7BhrtDKSOm2r1j5Ft6fu
|
|||||||
github.com/retailcrm/api-client-go v1.1.0/go.mod h1:QRoPE2SM6ST7i2g0yEdqm7Iw98y7cYuq3q14Ot+6N8c=
|
github.com/retailcrm/api-client-go v1.1.0/go.mod h1:QRoPE2SM6ST7i2g0yEdqm7Iw98y7cYuq3q14Ot+6N8c=
|
||||||
github.com/retailcrm/mg-transport-api-client-go v1.1.17 h1:8L0meFJFZwr3TyiF/xypI+g0xRXIGkWhyQ6qiCfojqw=
|
github.com/retailcrm/mg-transport-api-client-go v1.1.17 h1:8L0meFJFZwr3TyiF/xypI+g0xRXIGkWhyQ6qiCfojqw=
|
||||||
github.com/retailcrm/mg-transport-api-client-go v1.1.17/go.mod h1:AWV6BueE28/6SCoyfKURTo4lF0oXYoOKmHTzehd5vAI=
|
github.com/retailcrm/mg-transport-api-client-go v1.1.17/go.mod h1:AWV6BueE28/6SCoyfKURTo4lF0oXYoOKmHTzehd5vAI=
|
||||||
|
github.com/retailcrm/mg-transport-api-client-go v1.1.18 h1:V59Ai79N1jrS1kAnQggNoRYsoAdr2RUV7Hf0xbw9r9Q=
|
||||||
|
github.com/retailcrm/mg-transport-api-client-go v1.1.18/go.mod h1:AWV6BueE28/6SCoyfKURTo4lF0oXYoOKmHTzehd5vAI=
|
||||||
github.com/smartystreets/assertions v0.0.0-20180820201707-7c9eb446e3cf h1:6V1qxN6Usn4jy8unvggSJz/NC790tefw8Zdy6OZS5co=
|
github.com/smartystreets/assertions v0.0.0-20180820201707-7c9eb446e3cf h1:6V1qxN6Usn4jy8unvggSJz/NC790tefw8Zdy6OZS5co=
|
||||||
github.com/smartystreets/assertions v0.0.0-20180820201707-7c9eb446e3cf/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc=
|
github.com/smartystreets/assertions v0.0.0-20180820201707-7c9eb446e3cf/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc=
|
||||||
github.com/smartystreets/goconvey v0.0.0-20180222194500-ef6db91d284a h1:JSvGDIbmil4Ui/dDdFBExb7/cmkNjyX5F97oglmvCDo=
|
github.com/smartystreets/goconvey v0.0.0-20180222194500-ef6db91d284a h1:JSvGDIbmil4Ui/dDdFBExb7/cmkNjyX5F97oglmvCDo=
|
||||||
|
@ -15,6 +15,7 @@ type Options struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const Type = "telegram"
|
const Type = "telegram"
|
||||||
|
const MaxCharsCount uint16 = 4096
|
||||||
|
|
||||||
var (
|
var (
|
||||||
config *TransportConfig
|
config *TransportConfig
|
||||||
|
@ -330,10 +330,11 @@ func getChannelSettings(cid ...uint64) v1.Channel {
|
|||||||
Read: v1.ChannelFeatureNone,
|
Read: v1.ChannelFeatureNone,
|
||||||
},
|
},
|
||||||
Text: v1.ChannelSettingsText{
|
Text: v1.ChannelSettingsText{
|
||||||
Creating: v1.ChannelFeatureBoth,
|
Creating: v1.ChannelFeatureBoth,
|
||||||
Editing: v1.ChannelFeatureBoth,
|
Editing: v1.ChannelFeatureBoth,
|
||||||
Quoting: v1.ChannelFeatureBoth,
|
Quoting: v1.ChannelFeatureBoth,
|
||||||
Deleting: v1.ChannelFeatureReceive,
|
Deleting: v1.ChannelFeatureReceive,
|
||||||
|
MaxCharsCount: MaxCharsCount,
|
||||||
},
|
},
|
||||||
Product: v1.Product{
|
Product: v1.Product{
|
||||||
Creating: v1.ChannelFeatureReceive,
|
Creating: v1.ChannelFeatureReceive,
|
||||||
|
@ -66,10 +66,11 @@ func TestRouting_addBotHandler(t *testing.T) {
|
|||||||
Read: v1.ChannelFeatureNone,
|
Read: v1.ChannelFeatureNone,
|
||||||
},
|
},
|
||||||
Text: v1.ChannelSettingsText{
|
Text: v1.ChannelSettingsText{
|
||||||
Creating: v1.ChannelFeatureBoth,
|
Creating: v1.ChannelFeatureBoth,
|
||||||
Editing: v1.ChannelFeatureBoth,
|
Editing: v1.ChannelFeatureBoth,
|
||||||
Quoting: v1.ChannelFeatureBoth,
|
Quoting: v1.ChannelFeatureBoth,
|
||||||
Deleting: v1.ChannelFeatureReceive,
|
Deleting: v1.ChannelFeatureReceive,
|
||||||
|
MaxCharsCount: MaxCharsCount,
|
||||||
},
|
},
|
||||||
Product: v1.Product{
|
Product: v1.Product{
|
||||||
Creating: v1.ChannelFeatureReceive,
|
Creating: v1.ChannelFeatureReceive,
|
||||||
|
Loading…
Reference in New Issue
Block a user