()
| 1188 | } |
| 1189 | |
| 1190 | func (this *CommonController) LatestVersion() { |
| 1191 | version, _ := strconv.Atoi(models.GetOptionValue("APP_VERSION", "0")) |
| 1192 | page := models.GetOptionValue("APP_PAGE", "") |
| 1193 | this.Response(http.StatusOK, messageSuccess, map[string]interface{}{"version": version, "url": page}) |
| 1194 | } |
| 1195 | |
| 1196 | func (this *CommonController) Rank() { |
| 1197 | limit, _ := this.GetInt("limit", 50) |
nothing calls this directly
no test coverage detected