1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
|
// 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) } gitignore.git
aboutsummaryrefslogtreecommitdiffstats |