1
0
mirror of https://github.com/chyzy/RSystem-MVC synced 2024-11-23 07:30:26 +01:00
RSystem-MVC-Fork/RSystem/Controllers/HomeController.cs

22 lines
606 B
C#
Raw Normal View History

2018-04-17 11:20:49 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace RSystem.Controllers
{
[AllowAnonymous]
public class HomeController : Controller
{
// GET: Home
public ActionResult Index()
{
if (User.IsInRole("Recruit"))
return RedirectToAction("Index", "Home", new {area = "Recruit"});
else if (User.IsInRole("Admin"))
return RedirectToAction("Index", "Panel", new {area = "Admin"});
return RedirectToAction("Login", "Account");
}
}
}