()
| 921 | } |
| 922 | |
| 923 | func (this *ManagerController) Sitemap() { |
| 924 | baseUrl := this.Ctx.Input.Scheme() + "://" + this.Ctx.Request.Host |
| 925 | if host := beego.AppConfig.String("sitemap_host"); len(host) > 0 { |
| 926 | baseUrl = this.Ctx.Input.Scheme() + "://" + host |
| 927 | } |
| 928 | go models.SitemapUpdate(baseUrl) |
| 929 | this.JsonResult(0, "站点地图更新提交成功,已交由后台执行更新,请耐心等待。") |
| 930 | } |
| 931 | |
| 932 | // 分类管理 |
| 933 | func (this *ManagerController) Category() { |
nothing calls this directly
no test coverage detected