mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-20 10:45:29 +08:00
12 lines
266 B
C#
12 lines
266 B
C#
![]() |
using System.Web.Mvc;
|
|||
|
using Orchard.Themes;
|
|||
|
|
|||
|
namespace Orchard.Core.Dashboard.Controllers {
|
|||
|
[Themed(false)]
|
|||
|
public class HelperController : Controller {
|
|||
|
|
|||
|
public ActionResult Index() {
|
|||
|
return View();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|