scottyeung commented on issue #35464:
URL: https://github.com/apache/superset/issues/35464#issuecomment-3364520784
Got it working after I manually patched `flask_appbuilder/api/manager.py`
```
class SwaggerView(BaseView):
route_base = "/swagger"
default_view = "ui"
openapi_uri = "/prefix/api/{}/_openapi"
@expose("/<version>")
@has_access
def show(self, version):
return self.render_template(
current_app.config.get(
"FAB_API_SWAGGER_TEMPLATE", "appbuilder/swagger/swagger.html"
),
openapi_uri=self.openapi_uri.format(version),
)
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]