mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-09-23 04:43:35 +08:00
19 lines
408 B
C#
19 lines
408 B
C#
![]() |
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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|