2019-02-09 18:37:37 -07:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package setting
|
|
|
|
|
|
|
|
var (
|
|
|
|
// Webhook settings
|
|
|
|
Webhook = struct {
|
|
|
|
QueueLength int
|
|
|
|
DeliverTimeout int
|
|
|
|
SkipTLSVerify bool
|
|
|
|
Types []string
|
|
|
|
PagingNum int
|
|
|
|
}{
|
|
|
|
QueueLength: 1000,
|
|
|
|
DeliverTimeout: 5,
|
|
|
|
SkipTLSVerify: false,
|
|
|
|
PagingNum: 10,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
func newWebhookService() {
|
|
|
|
sec := Cfg.Section("webhook")
|
|
|
|
Webhook.QueueLength = sec.Key("QUEUE_LENGTH").MustInt(1000)
|
|
|
|
Webhook.DeliverTimeout = sec.Key("DELIVER_TIMEOUT").MustInt(5)
|
|
|
|
Webhook.SkipTLSVerify = sec.Key("SKIP_TLS_VERIFY").MustBool()
|
2019-04-19 08:18:06 -06:00
|
|
|
Webhook.Types = []string{"gitea", "gogs", "slack", "discord", "dingtalk", "telegram", "msteams"}
|
2019-02-09 18:37:37 -07:00
|
|
|
Webhook.PagingNum = sec.Key("PAGING_NUM").MustInt(10)
|
|
|
|
}
|