Skip to content

Commit a2fb31e

Browse files
Update API name
1 parent bd9be50 commit a2fb31e

File tree

1 file changed

+6
-4
lines changed
  • src/Certify.Server/Certify.Server.Api.Public

1 file changed

+6
-4
lines changed

src/Certify.Server/Certify.Server.Api.Public/Startup.cs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ public void ConfigureServices(IServiceCollection services)
8686

8787
c.SwaggerDoc("v1", new OpenApiInfo
8888
{
89-
Title = "Certify Server API",
89+
Title = "Certify Management Hub API",
9090
Version = "v1",
91-
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."
91+
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."
9292
});
9393

9494
c.UseAllOfToExtendReferenceSchemas();
@@ -138,6 +138,8 @@ public void ConfigureServices(IServiceCollection services)
138138
};
139139
});
140140

141+
142+
141143
});
142144

143145
// connect to primary certify service
@@ -238,8 +240,8 @@ public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
238240
app.UseSwaggerUI(c =>
239241
{
240242
c.RoutePrefix = "docs";
241-
c.DocumentTitle = "Certify Server API";
242-
c.SwaggerEndpoint("/swagger/v1/swagger.json", "Certify Server API");
243+
c.DocumentTitle = "Certify Management Hub API";
244+
c.SwaggerEndpoint("/swagger/v1/swagger.json", "Certify Management Hub API");
243245
});
244246
#endif
245247
}

0 commit comments

Comments
 (0)