mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-09-24 05:23:33 +08:00
- Adding the multi-tenancy module.
--HG-- branch : dev
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
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());
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user