- Adding Orchard.Roles project

- Role,Permission models.
- Admin controller.

--HG--
extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4039469
This commit is contained in:
suhacan
2009-11-10 19:26:37 +00:00
parent cc62bd6644
commit aa4071cc41
16 changed files with 724 additions and 6 deletions

View File

@@ -0,0 +1,18 @@
using System.Web.Mvc;
using Orchard.Notify;
namespace Orchard.Roles.Controllers {
[ValidateInput(false)]
public class AdminController : Controller {
private readonly INotifier _notifier;
public AdminController(INotifier notifier) {
_notifier = notifier;
}
public ActionResult Index() {
return View();
}
}
}