Skip to content

Instantly share code, notes, and snippets.

@hudo
Created July 16, 2017 22:29
Show Gist options
  • Save hudo/0b8c933725f3c752412caecfafc6dbf0 to your computer and use it in GitHub Desktop.
Save hudo/0b8c933725f3c752412caecfafc6dbf0 to your computer and use it in GitHub Desktop.
Controller
public IActionResult Index()
{
var model = new HomePageViewModel
{
Title = "Welcome!",
DisplayMode = StoriesDisplayMode.FeaturedList,
CanWriteStory = User.Identity.IsAuthenticated
};
return View(model);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment