Changes
Build and Push Docker Images / build (push) Successful in 36s

This commit is contained in:
2026-05-06 14:19:33 +03:00
parent cd0e32513f
commit f1e8a9f8da
4 changed files with 8 additions and 8 deletions
+4 -4
View File
@@ -11,16 +11,16 @@ namespace Api.Controllers;
[ApiController]
[Route("api/cv-matcher")]
[EnableRateLimiting("cv-matcher")]
public sealed class RagController : ControllerBase
public sealed class CvMatcherController : ControllerBase
{
private readonly Api.Clients.Api.Contracts.ICvMatcherApi _cvApi;
private readonly IConfiguration _configuration;
private readonly ILogger<RagController> _logger;
private readonly ILogger<CvMatcherController> _logger;
public RagController(
public CvMatcherController(
Api.Clients.Api.Contracts.ICvMatcherApi cvApi,
IConfiguration configuration,
ILogger<RagController> logger)
ILogger<CvMatcherController> logger)
{
_cvApi = cvApi;
_configuration = configuration;
+1 -1
View File
@@ -26,7 +26,7 @@
<PackageReference Include="Serilog.Sinks.Email" Version="4.2.1" />
<PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.1.7" />
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="6.5.0" />
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="10.1.7" />
<PackageReference Include="Refit.HttpClientFactory" Version="10.1.6" />
</ItemGroup>