refactor: rename files

This commit is contained in:
Jason Song
2022-12-05 15:52:32 +08:00
parent 704f72017d
commit 5f74b35377
8 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,29 @@
// Copyright 2022 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
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 newBots() {
sec := Cfg.Section("bots")
if err := sec.MapTo(&Bots); err != nil {
log.Fatal("Failed to map Bots settings: %v", err)
}
Bots.Storage = getStorage("bots_log", "", nil)
}