Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
28 lines (23 sloc)
523 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Web.Mvc; | |
namespace SocialBootstrapApi.Controllers | |
{ | |
public partial class HomeController : ControllerBase | |
{ | |
public AppConfig Config { get; set; } | |
public virtual ActionResult Index() | |
{ | |
ViewBag.Message = "MVC + ServiceStack PowerPack!"; | |
ViewBag.UserSession = base.UserSession; | |
ViewBag.Config = Config; | |
return View(); | |
} | |
public virtual ActionResult About() | |
{ | |
return View(); | |
} | |
public virtual ActionResult Features() | |
{ | |
return View(); | |
} | |
} | |
} |