diff --git a/pkg/config/config.go b/pkg/config/config.go index 555894d..7aa4503 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -72,12 +72,13 @@ func NewProcessor() Processor { } type SalesForce struct { - Endpoint string `yaml:"endpoint"` - Username string `yaml:"username"` - Password string `yaml:"password"` - SecurityToken string `yaml:"security-token"` - MaxCommentLength int `yaml:"max-comment-length"` - EnableChatter bool `yaml:"enable-chatter"` + Endpoint string `yaml:"endpoint"` + Username string `yaml:"username"` + Password string `yaml:"password"` + SecurityToken string `yaml:"security-token"` + MaxCommentLength int `yaml:"max-comment-length"` + MaxNumberCommentChunks int `yaml:"max-number-comment-chunks"` + EnableChatter bool `yaml:"enable-chatter"` } func NewSalesForce() SalesForce {