|
@@ -172,6 +172,7 @@ func execServe(c *cli.Context) error {
|
|
|
twilioAuthToken := c.String("twilio-auth-token")
|
|
twilioAuthToken := c.String("twilio-auth-token")
|
|
|
twilioPhoneNumber := c.String("twilio-phone-number")
|
|
twilioPhoneNumber := c.String("twilio-phone-number")
|
|
|
twilioVerifyService := c.String("twilio-verify-service")
|
|
twilioVerifyService := c.String("twilio-verify-service")
|
|
|
|
|
+ twilioCallFormat := c.String("twilio-call-format")
|
|
|
messageSizeLimitStr := c.String("message-size-limit")
|
|
messageSizeLimitStr := c.String("message-size-limit")
|
|
|
messageDelayLimitStr := c.String("message-delay-limit")
|
|
messageDelayLimitStr := c.String("message-delay-limit")
|
|
|
totalTopicLimit := c.Int("global-topic-limit")
|
|
totalTopicLimit := c.Int("global-topic-limit")
|
|
@@ -388,6 +389,7 @@ func execServe(c *cli.Context) error {
|
|
|
conf.TwilioAuthToken = twilioAuthToken
|
|
conf.TwilioAuthToken = twilioAuthToken
|
|
|
conf.TwilioPhoneNumber = twilioPhoneNumber
|
|
conf.TwilioPhoneNumber = twilioPhoneNumber
|
|
|
conf.TwilioVerifyService = twilioVerifyService
|
|
conf.TwilioVerifyService = twilioVerifyService
|
|
|
|
|
+ conf.TwilioCallFormat = twilioCallFormat
|
|
|
conf.MessageSizeLimit = int(messageSizeLimit)
|
|
conf.MessageSizeLimit = int(messageSizeLimit)
|
|
|
conf.MessageDelayMax = messageDelayLimit
|
|
conf.MessageDelayMax = messageDelayLimit
|
|
|
conf.TotalTopicLimit = totalTopicLimit
|
|
conf.TotalTopicLimit = totalTopicLimit
|