mirror of
https://github.com/go-gitea/gitea.git
synced 2025-08-18 22:54:17 +09:00
Add default bot url
This commit is contained in:
30
modules/setting/bot.go
Normal file
30
modules/setting/bot.go
Normal file
@ -0,0 +1,30 @@
|
||||
// Copyright 2022 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
|
||||
|
||||
import (
|
||||
"code.gitea.io/gitea/modules/log"
|
||||
)
|
||||
|
||||
// Bots settings
|
||||
var (
|
||||
Bots = struct {
|
||||
Storage
|
||||
Enabled bool
|
||||
DefaultBotsURL string
|
||||
}{
|
||||
Enabled: false,
|
||||
DefaultBotsURL: "https://gitea.com",
|
||||
}
|
||||
)
|
||||
|
||||
func newBuilds() {
|
||||
sec := Cfg.Section("bots")
|
||||
if err := sec.MapTo(&Bots); err != nil {
|
||||
log.Fatal("Failed to map Builds settings: %v", err)
|
||||
}
|
||||
|
||||
Bots.Storage = getStorage("bots_log", "", nil)
|
||||
}
|
Reference in New Issue
Block a user