You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
setup_swagger should set statics_path = '{}{}/swagger_static'.format(api_base_url,_swagger_url) if sub apps are to work as specified in the documentation
The text was updated successfully, but these errors were encountered:
Swagger UI static assets are set to
<link href="/doc/swagger_static/css/typography.css" media="screen" rel="stylesheet" type="text/css">
when they should actually live at
<link href="/api/v1/doc/swagger_static/css/typography.css" media="screen" rel="stylesheet" type="text/css">
if
setup_swagger
is called on a sub app like:FIX:
setup_swagger
should setstatics_path
='{}{}/swagger_static'.format(api_base_url,_swagger_url)
if sub apps are to work as specified in the documentationThe text was updated successfully, but these errors were encountered: