Skip to content

Commit

Permalink
Merge branch 'release-1.9.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasdepetrisd committed Mar 18, 2024
2 parents 2c7e535 + de9b54e commit c435741
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ internal static (TipoDocumento tipo, long nro) ObtenerTipoYNumeroDocumento(strin
return (tipoDocumento.ToLowerInvariant() switch
{
"cuit" => TipoDocumento.Cuit,
"cuil" => TipoDocumento.Cuil,
"cuil" => TipoDocumento.Cuit,
_ => throw new ArgumentException("Tipo de Documento inválido."),
}, parsedNumeroDocumento);

Expand Down
2 changes: 1 addition & 1 deletion src/WebAPI/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
builder.Services.AddSwaggerGen(c =>
{
c.SwaggerDoc("Crud", new OpenApiInfo { Title = "La Tienda API: CRUD", Version = "v1.5", Description = $"Environment: {builder.Environment.EnvironmentName}" });
c.SwaggerDoc("UseCases", new OpenApiInfo { Title = "La Tienda API: Casos de Uso", Version = "v1.9.0", Description = $"Environment: {builder.Environment.EnvironmentName}" });
c.SwaggerDoc("UseCases", new OpenApiInfo { Title = "La Tienda API: Casos de Uso", Version = "v1.9.1", Description = $"Environment: {builder.Environment.EnvironmentName}" });

string[] methodsOrder = ["get", "post", "put", "patch", "delete", "options", "trace"];
c.OrderActionsBy((apiDesc) =>
Expand Down

0 comments on commit c435741

Please sign in to comment.