()
| 856 | } |
| 857 | |
| 858 | func (this *ManagerController) DelAds() { |
| 859 | id, _ := this.GetInt("id") |
| 860 | _, err := orm.NewOrm().QueryTable(models.NewAdsCont()).Filter("id", id).Delete() |
| 861 | if err != nil { |
| 862 | this.JsonResult(1, err.Error()) |
| 863 | } |
| 864 | go models.UpdateAdsCache() |
| 865 | this.JsonResult(0, "删除成功") |
| 866 | } |
| 867 | |
| 868 | // 广告管理 |
| 869 | func (this *ManagerController) Ads() { |
nothing calls this directly
no test coverage detected