1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-07 21:58:06 -05:00
IW4M-Admin/WebfrontCore/Controllers/HomeController.cs
2018-03-06 01:22:19 -06:00

26 lines
617 B
C#

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using SharedLibrary.Dtos;
namespace WebfrontCore.Controllers
{
public class HomeController : BaseController
{
public IActionResult Index()
{
ViewBag.Title = "Server Overview";
return View();
}
public IActionResult Error()
{
// return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
return null;
}
}
}