summaryrefslogtreecommitdiffstats
path: root/modules/cron
diff options
context:
space:
mode:
authorUnknown <joe2010xtmf@163.com>2014-06-08 04:45:34 -0400
committerUnknown <joe2010xtmf@163.com>2014-06-08 04:45:34 -0400
commit302c863cda651130286838309d3d897cace93534 (patch)
treebc2b5e8efd513304806e1e900141856d3adfce48 /modules/cron
parenta0318db2f9094eda2beea19ed323244b4ae30831 (diff)
downloadgitea-302c863cda651130286838309d3d897cace93534.tar.gz
gitea-302c863cda651130286838309d3d897cace93534.zip
Fix #242
Diffstat (limited to 'modules/cron')
-rw-r--r--modules/cron/cron.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/cron/cron.go b/modules/cron/cron.go
index 27b1fc41bb..c06e649bb7 100644
--- a/modules/cron/cron.go
+++ b/modules/cron/cron.go
@@ -5,13 +5,17 @@
package cron
import (
+ "fmt"
+
"github.com/robfig/cron"
"github.com/gogits/gogs/models"
+ "github.com/gogits/gogs/modules/setting"
)
func NewCronContext() {
c := cron.New()
c.AddFunc("@every 1h", models.MirrorUpdate)
+ c.AddFunc(fmt.Sprintf("@every %dm", setting.WebhookTaskInterval), models.DeliverHooks)
c.Start()
}