Skip to content

Commit a88f57f

Browse files
LogController name changed to ErrorController
1 parent f1c77f7 commit a88f57f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ApiIntegrationMvc/Areas/Admin/Controllers/LogsController.cs renamed to ApiIntegrationMvc/Areas/Admin/Controllers/ErrorController.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
namespace ApiIntegrationMvc.Areas.Admin.Controllers
55
{
66
[Area("Admin")]
7-
public class LogsController : Controller
7+
public class ErrorController : Controller
88
{
99
private readonly ICentralizedLoggingClient _centralizedlogs;
1010
private readonly IAccessTokenProvider _cache;
1111
private readonly IHttpContextAccessor _http;
12-
public LogsController(ICentralizedLoggingClient centralizedlogs, IAccessTokenProvider cache, IHttpContextAccessor http) => (_centralizedlogs, _cache, _http) = (centralizedlogs, cache, http);
12+
public ErrorController(ICentralizedLoggingClient centralizedlogs, IAccessTokenProvider cache, IHttpContextAccessor http) => (_centralizedlogs, _cache, _http) = (centralizedlogs, cache, http);
1313

1414
public async Task<IActionResult> Index(CancellationToken ct)
1515
{

0 commit comments

Comments
 (0)