Mineplex2018-withcommit/Website/LOC.Website.Web/Areas/Manage/Controllers/ManageControllerBase.cs
Jonathan Williams 3fb52c5c71 Initial Commit
2013-08-27 08:14:08 -07:00

10 lines
191 B
C#

namespace LOC.Website.Web.Areas.Manage.Controllers
{
using System.Web.Mvc;
[Authorize(Roles = "Admins")]
public abstract class ManageControllerBase : Controller
{
}
}