add redoc

This commit is contained in:
crobibero 2020-04-19 10:51:51 -06:00
parent 16401ec7ae
commit 8a7e4cd639
2 changed files with 12 additions and 7 deletions

View File

@ -10,7 +10,8 @@
<PackageReference Include="Microsoft.AspNetCore.Authentication" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="3.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.2.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.3.2" />
<PackageReference Include="Swashbuckle.AspNetCore.ReDoc" Version="5.3.2" />
</ItemGroup>
<ItemGroup>

View File

@ -14,14 +14,18 @@ namespace Jellyfin.Server.Extensions
/// <returns>The updated application builder.</returns>
public static IApplicationBuilder UseJellyfinApiSwagger(this IApplicationBuilder applicationBuilder)
{
applicationBuilder.UseSwagger();
// Enable middleware to serve swagger-ui (HTML, JS, CSS, etc.),
// specifying the Swagger JSON endpoint.
return applicationBuilder.UseSwaggerUI(c =>
{
c.SwaggerEndpoint("/swagger/v1/swagger.json", "Jellyfin API V1");
});
const string specEndpoint = "/swagger/v1/swagger.json";
return applicationBuilder.UseSwagger()
.UseSwaggerUI(c =>
{
c.SwaggerEndpoint(specEndpoint, "Jellyfin API V1");
})
.UseReDoc(c =>
{
c.SpecUrl(specEndpoint);
});
}
}
}