summaryrefslogtreecommitdiffstats
path: root/modules/setting/cron.go
blob: c8228ddaa87a9d2a6bbb6fb8352bdce5fdef26fd (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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

// GetCronSettings maps the cron subsection to the provided config
func GetCronSettings(name string, config interface{}) (interface{}, error) {
	err := Cfg.Section("cron." + name).MapTo(config)
	return config, err
}