mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 17:20:15 -06:00
18 lines
386 B
C#
18 lines
386 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace CarCareTracker.Controllers
|
|
{
|
|
public class ErrorController : Controller
|
|
{
|
|
public IActionResult Unauthorized()
|
|
{
|
|
if (User.IsInRole("APIAuth"))
|
|
{
|
|
Response.StatusCode = 403;
|
|
return new EmptyResult();
|
|
}
|
|
return View("401");
|
|
}
|
|
}
|
|
}
|