using System.Web.Mvc;
|
|
|
|
namespace Sevomin.WebFrontend.Controllers
|
|
{
|
|
public class HomeController : BaseController
|
|
{
|
|
public ActionResult Index()
|
|
{
|
|
if (!Request.IsAuthenticated)
|
|
return View("Intro");
|
|
else
|
|
return View("Intro");
|
|
}
|
|
|
|
}
|
|
}
|