You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
611 B

10 years ago
  1. // Copyright 2014 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package cron
  5. import (
  6. "fmt"
  7. "github.com/gogits/gogs/models"
  8. "github.com/gogits/gogs/modules/setting"
  9. )
  10. var c = New()
  11. func NewCronContext() {
  12. c.AddFunc("Update mirrors", "@every 1h", models.MirrorUpdate)
  13. c.AddFunc("Deliver hooks", fmt.Sprintf("@every %dm", setting.WebhookTaskInterval), models.DeliverHooks)
  14. c.AddFunc("Repository health check", "@every 1h", models.GitFsck)
  15. c.Start()
  16. }
  17. func ListEntries() []*Entry {
  18. return c.Entries()
  19. }