check bugs

This commit is contained in:
yubaolee@163.com
2018-04-13 16:18:30 +08:00
parent 785cfcc533
commit 9e7e8f82ae
10 changed files with 96 additions and 184 deletions

View File

@@ -20,11 +20,9 @@ namespace OpenAuth.Mvc.Controllers
return View();
}
public string All([FromUri]QueryResourcesReq request)
public string Load([FromUri]QueryResourcesReq request)
{
TableData data = new TableData();
data = App.All(request);
return JsonHelper.Instance.Serialize(data);
return JsonHelper.Instance.Serialize(App.Load(request));
}
[System.Web.Mvc.HttpPost]