added welcome page

This commit is contained in:
Nicolas Constant
2020-08-02 20:21:59 -04:00
parent a9a2fad375
commit 0354bce8e9
4 changed files with 43 additions and 8 deletions

View File

@ -33,5 +33,11 @@ namespace BirdsiteLive.Controllers
{
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
}
[HttpPost]
public IActionResult Index(string handle)
{
return RedirectToAction("Index", "Users", new {id = handle});
}
}
}