We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1520378 commit 240d10eCopy full SHA for 240d10e
1 file changed
src/Features/Blockcore.Features.Api/ConfigureSwaggerOptions.cs
@@ -64,9 +64,14 @@ private static OpenApiInfo CreateInfoForApiVersion(ApiVersionDescription descrip
64
{
65
var info = new OpenApiInfo()
66
67
- Title = "Stratis Node API",
+ Title = "Blockcore Node API",
68
Version = description.ApiVersion.ToString(),
69
- Description = "Access to the Stratis Node's core features."
+ Description = "Access to the Blockcore Node features.",
70
+ Contact = new OpenApiContact
71
+ {
72
+ Name = "Blockcore",
73
+ Url = new Uri("https://www.blockcore.net/")
74
+ }
75
};
76
77
if (info.Version.Contains("dev"))
0 commit comments