Continued implementation of model infrastructure. Adding orchard security providers. Adding Users package.

--HG--
extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4039302
This commit is contained in:
loudej
2009-11-10 03:41:01 +00:00
parent fe64cea912
commit f0b46afc84
33 changed files with 975 additions and 41 deletions

View File

@@ -0,0 +1,10 @@
using System.Web.Mvc;
namespace Orchard.Users.Controllers {
public class AdminController : Controller {
public ActionResult Index() {
return View();
}
}
}