diff options
| author | transtrike <transtrike@gmail.com> | 2020-12-10 13:54:23 +0200 |
|---|---|---|
| committer | transtrike <transtrike@gmail.com> | 2020-12-10 13:54:23 +0200 |
| commit | ee80c6ff969b5b4cfc3d1292f15928fc8bd2d667 (patch) | |
| tree | 02d126568767f77f78127a347b142e5225fab4de /Web/Controllers/HomeController.cs | |
| parent | 7941f1ab479b72ee53e94aef54b8390d21d36f84 (diff) | |
| download | DevHive-ee80c6ff969b5b4cfc3d1292f15928fc8bd2d667.tar DevHive-ee80c6ff969b5b4cfc3d1292f15928fc8bd2d667.tar.gz DevHive-ee80c6ff969b5b4cfc3d1292f15928fc8bd2d667.zip | |
Replaced ASP.NET Core MVC with Blazor
Diffstat (limited to 'Web/Controllers/HomeController.cs')
| -rw-r--r-- | Web/Controllers/HomeController.cs | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/Web/Controllers/HomeController.cs b/Web/Controllers/HomeController.cs deleted file mode 100644 index 3c5b6ec..0000000 --- a/Web/Controllers/HomeController.cs +++ /dev/null @@ -1,37 +0,0 @@ -using System;
-using System.Collections.Generic;
-using System.Diagnostics;
-using System.Linq;
-using System.Threading.Tasks;
-using Microsoft.AspNetCore.Mvc;
-using Microsoft.Extensions.Logging;
-using Web.Models;
-
-namespace Web.Controllers
-{
- public class HomeController : Controller
- {
- private readonly ILogger<HomeController> _logger;
-
- public HomeController(ILogger<HomeController> logger)
- {
- _logger = logger;
- }
-
- public IActionResult Index()
- {
- return View();
- }
-
- public IActionResult Privacy()
- {
- return View();
- }
-
- [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
- public IActionResult Error()
- {
- return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
- }
- }
-}
|
