Files
lubelog/Controllers/Error.cs
DESKTOP-GENO133\IvanPlex 4388df71f3 added action filter attribute
2024-01-13 20:13:12 -07:00

13 lines
231 B
C#

using Microsoft.AspNetCore.Mvc;
namespace CarCareTracker.Controllers
{
public class ErrorController : Controller
{
public IActionResult Unauthorized()
{
return View("401");
}
}
}