mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-09-23 04:43:35 +08:00
- 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:
@@ -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();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user