Rename ResultStatus to Results

This commit is contained in:
2016-05-06 11:16:43 -04:00
parent e0788154ec
commit cf3a13b77b
8 changed files with 41 additions and 36 deletions
-9
View File
@@ -100,15 +100,6 @@ namespace LeafWeb.Web.Controllers
return View("Index", viewModel);
}
public FileContentResult DownloadResults(int id)
{
var leafInput = DataService.GetLeafInput(id);
var zip = leafInput.GetOutputFileZip();
return new FileContentResult(zip, "application/zip") {FileDownloadName = leafInput.Identifier + ".zip"};
}
public void NotifyComplete()
{
HangfireStartup.TriggerPiscalProcessQueue();