Skip to content

Commit

Permalink
Update API name
Browse files Browse the repository at this point in the history
  • Loading branch information
webprofusion-chrisc committed Nov 13, 2024
1 parent bd9be50 commit a2fb31e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/Certify.Server/Certify.Server.Api.Public/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ public void ConfigureServices(IServiceCollection services)

c.SwaggerDoc("v1", new OpenApiInfo
{
Title = "Certify Server API",
Title = "Certify Management Hub API",
Version = "v1",
Description = "The Certify Server API provides a certificate services API for use in devops, CI/CD, middleware etc. Certificates are managed by Certify The Web (https://certifytheweb.com) on the primary server using ACME, with API access controlled using API tokens."
Description = "The Certify Management Hub API provides a certificate services API for use in UI, devops, CI/CD, middleware etc. See certifytheweb.com for more details."
});

c.UseAllOfToExtendReferenceSchemas();
Expand Down Expand Up @@ -138,6 +138,8 @@ public void ConfigureServices(IServiceCollection services)
};
});



});

// connect to primary certify service
Expand Down Expand Up @@ -238,8 +240,8 @@ public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
app.UseSwaggerUI(c =>
{
c.RoutePrefix = "docs";
c.DocumentTitle = "Certify Server API";
c.SwaggerEndpoint("/swagger/v1/swagger.json", "Certify Server API");
c.DocumentTitle = "Certify Management Hub API";
c.SwaggerEndpoint("/swagger/v1/swagger.json", "Certify Management Hub API");
});
#endif
}
Expand Down

0 comments on commit a2fb31e

Please sign in to comment.