Ejemplo n.º 1
0
 public ActionResult Index()
 {
     var settings = _siteSettingsService.GetSettings();
     var model = new Index
         {
             HasAnalyticsConfigured = !string.IsNullOrEmpty(settings.AnalyticsToken)
         };
     return View(model);
 }
Ejemplo n.º 2
0
 public ActionResult Index()
 {
     var model = new Index();
     return View(model);
 }