using System.Diagnostics; using Microsoft.AspNetCore.Mvc; using PaydayFrontend.Models; namespace PaydayFrontend.Controllers; public class AdminController : Controller { public async Task Index() { return View(); } [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)] public IActionResult Error() { return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier }); } }