mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-07-18 04:17:56 +08:00
18 lines
466 B
C#
18 lines
466 B
C#
![]() |
using System.Web.Mvc;
|
|||
|
using Orchard.Localization;
|
|||
|
using Orchard.MultiTenancy.ViewModels;
|
|||
|
|
|||
|
namespace Orchard.MultiTenancy.Controllers {
|
|||
|
[ValidateInput(false)]
|
|||
|
public class AdminController : Controller {
|
|||
|
public AdminController() {
|
|||
|
T = NullLocalizer.Instance;
|
|||
|
}
|
|||
|
|
|||
|
private Localizer T { get; set; }
|
|||
|
|
|||
|
public ActionResult List() {
|
|||
|
return View(new TenantsListViewModel());
|
|||
|
}
|
|||
|
}
|
|||
|
}
|