Swashbuckle.aspnetcore: Added Deep Link support

Created on 21 May 2018  路  1Comment  路  Source: domaindrivendev/Swashbuckle.AspNetCore

It appears that after the upgrade to swagger 3.0 we lost all deep linking support: https://github.com/swagger-api/swagger-ui/blob/master/docs/usage/deep-linking.md

Most helpful comment

I guess it's disabled by default in swagger-ui 3x. You should be able to explicitly enable it with the following:

app.UseSwaggerUI(c =>
{
    ...
    c.EnableDeepLinking();
});

>All comments

I guess it's disabled by default in swagger-ui 3x. You should be able to explicitly enable it with the following:

app.UseSwaggerUI(c =>
{
    ...
    c.EnableDeepLinking();
});
Was this page helpful?
0 / 5 - 0 ratings

Related issues

JoelAdamWeiss picture JoelAdamWeiss  路  4Comments

flipchart picture flipchart  路  4Comments

mrmartan picture mrmartan  路  3Comments

rgelb picture rgelb  路  3Comments

jluqueba picture jluqueba  路  4Comments