Hello, sorry for putting here a support request rather than a confirmed issue, but perhaps it might end up with some docs enhancement or so... We're happily using flask-restplus with an API which works OK using the built-in swagger. Howe...
I am trying to use send_from_directory with RESTPlus and it looks as thought it is ignoring the path I am giving it in the first argument (code greatly simplified down to basics): @api.route('/missions/<path:file_name>') @api.param('file_name', 'The file to download') class ...
I am constantly getting 500 error for password type tokens request against auth/oauth2/token, and trying to figure out what went wrong (no change in auth module at all, and start getting such error), so naturally I start trying adding logging, but could not figure out how, does anyone ...
I would like to hide the models section from the swagger website. in the swagger doc the is an option to disable it by setting the param "DEFAULT_MODELS_EXPAND_DEPTH" to -1. I tried to do it here also but nothing works. can you add it pl...