Mineplex2018-withcommit/Website/Nautilus.Web.Impulse/Controllers/ManageController.cs
Jonathan Williams 3fb52c5c71 Initial Commit
2013-08-27 08:14:08 -07:00

14 lines
252 B
C#

namespace LOC.Website.Web.Controllers
{
using System.Web.Mvc;
public class ManageController : Controller
{
[Authorize(Roles = "Admins")]
public ActionResult Index()
{
return View();
}
}
}