mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 23:09:00 +00:00
22 lines
511 B
Go
22 lines
511 B
Go
|
// Copyright 2023 The Gitea Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package setting
|
||
|
|
||
|
// Metrics settings
|
||
|
var Metrics = struct {
|
||
|
Enabled bool
|
||
|
Token string
|
||
|
EnabledIssueByLabel bool
|
||
|
EnabledIssueByRepository bool
|
||
|
}{
|
||
|
Enabled: false,
|
||
|
Token: "",
|
||
|
EnabledIssueByLabel: false,
|
||
|
EnabledIssueByRepository: false,
|
||
|
}
|
||
|
|
||
|
func loadMetricsFrom(rootCfg ConfigProvider) {
|
||
|
mustMapSetting(rootCfg, "metrics", &Metrics)
|
||
|
}
|