Remove unnecessary localization dependencies from CompaniesController and NewsController constructors

This commit is contained in:
2025-11-13 18:28:14 +00:00
parent a715d936eb
commit 505ace535f
2 changed files with 2 additions and 2 deletions

View File

@@ -39,7 +39,7 @@ namespace Marechai.Server.Controllers;
[Route("/companies")]
[ApiController]
public class CompaniesController(MarechaiContext context, IStringLocalizer<CompaniesService> localizer) : ControllerBase
public class CompaniesController(MarechaiContext context) : ControllerBase
{
[HttpGet]
[AllowAnonymous]