FInalized Menu. Added first static Page...

This commit is contained in:
schnulller
2022-05-16 00:46:08 +02:00
parent c0ff6cea2d
commit d3d3d39bd0
18 changed files with 421 additions and 103 deletions

View File

@@ -5,7 +5,6 @@ using HaWeb.Models;
namespace HaWeb.Controllers;
[Route("Edition/[action]")]
[Route("Edition/[action]/Index")]
public class EditionController : Controller
{
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
@@ -37,4 +36,9 @@ public class EditionController : Controller
{
return View();
}
public IActionResult Datenschutzerklaerung()
{
return View();
}
}