aboutsummaryrefslogtreecommitdiff
path: root/ExamTemplate/Web/Controllers/HomeController.cs
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2021-05-15 22:20:53 +0300
committerSyndamia <kamen.d.mladenov@protonmail.com>2021-05-15 22:20:53 +0300
commitf35a7aecd313547a6f6478a056fb2d5593f1c07b (patch)
tree4473c30a5b51591d79f627b7518f8c9e15787cbf /ExamTemplate/Web/Controllers/HomeController.cs
parent2ac139d0854c0f6d1b4cebc1487dd41128f00c60 (diff)
downloadit-kariera-exam-template-f35a7aecd313547a6f6478a056fb2d5593f1c07b.tar
it-kariera-exam-template-f35a7aecd313547a6f6478a056fb2d5593f1c07b.tar.gz
it-kariera-exam-template-f35a7aecd313547a6f6478a056fb2d5593f1c07b.zip
Big daddy refactor
Diffstat (limited to 'ExamTemplate/Web/Controllers/HomeController.cs')
-rw-r--r--ExamTemplate/Web/Controllers/HomeController.cs33
1 files changed, 0 insertions, 33 deletions
diff --git a/ExamTemplate/Web/Controllers/HomeController.cs b/ExamTemplate/Web/Controllers/HomeController.cs
deleted file mode 100644
index d9cfc45..0000000
--- a/ExamTemplate/Web/Controllers/HomeController.cs
+++ /dev/null
@@ -1,33 +0,0 @@
-using System.Diagnostics;
-using ExamTemplate.Web.Models;
-using Microsoft.AspNetCore.Mvc;
-using Microsoft.Extensions.Logging;
-
-namespace ExamTemplate.Web.Controllers
-{
- public class HomeController : Controller
- {
- private readonly ILogger<HomeController> _logger;
-
- public HomeController(ILogger<HomeController> logger)
- {
- _logger = logger;
- }
-
- public IActionResult Index()
- {
- return View();
- }
-
- [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
- public IActionResult Error()
- {
- return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
- }
-
- public IActionResult ErrorNotFound()
- {
- return View();
- }
- }
-}