public async Task <IActionResult> Feed(bool shouldFilterIncomplete = true)
        {
            var result = View(await HomeIndexViewModel.CreateAsync(_changeSetRepository, shouldFilterIncomplete));

            result.ContentType = "application/atom+xml";
            return(result);
        }
 public async Task <IActionResult> Index()
 {
     return(View(await HomeIndexViewModel.CreateAsync(_changeSetRepository)));
 }