Skip to content

Commit

Permalink
Merge
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasdepetrisd committed Mar 14, 2024
2 parents 197fc82 + b3bba02 commit 37e514d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/WebAPI/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@

builder.Services.AddSwaggerGen(c =>
{
c.SwaggerDoc("Crud", new OpenApiInfo { Title = "La Tienda API: CRUD", Version = "v1.4", Description = $"Environment: {builder.Environment.EnvironmentName}" });
c.SwaggerDoc("UseCases", new OpenApiInfo { Title = "La Tienda API: Casos de Uso", Version = "v1.7.0", Description = $"Environment: {builder.Environment.EnvironmentName}" });
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.7.1", Description = $"Environment: {builder.Environment.EnvironmentName}" });

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

0 comments on commit 37e514d

Please sign in to comment.