2017-08-29 11:28:21 +02:00
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
using System.Threading.Tasks;
|
2017-03-23 19:10:55 +01:00
|
|
|
|
|
|
|
|
|
namespace WebStatus.Controllers
|
|
|
|
|
{
|
|
|
|
|
public class HomeController : Controller
|
|
|
|
|
{
|
2018-11-30 17:43:22 +01:00
|
|
|
|
public HomeController()
|
2017-03-23 19:10:55 +01:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-30 17:43:22 +01:00
|
|
|
|
public IActionResult Index()
|
2017-03-23 19:10:55 +01:00
|
|
|
|
{
|
2018-11-30 17:43:22 +01:00
|
|
|
|
return Redirect("/hc-ui");
|
2017-03-23 19:10:55 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IActionResult Error()
|
|
|
|
|
{
|
|
|
|
|
return View();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|