Fearxpc

Results 5 comments of Fearxpc

+1 Facing the same problem. We manage all of our permissions on top level folders and don't want to set global permission Job/Build to all users. I think the main...

> There seems to be a 1.5.17 sources release but no hpi? Is there any ETA on this? Please check this issue: https://github.com/jenkinsci/gitlab-plugin/issues/1027

Hi, you can try status.py ``` from flask_restplus import Namespace api = Namespace('status', description='Status related stuff') @api.route("/") @api.doc(...) class Status(Resource): ... ``` api.py ``` from flask import Blueprint from flask_restplus...

@ethe You should be able to reigster multiple blueprints with `app.register_blueprint()` - that's why I used the var name blueprint1.

Okay got it - but I think this is not possible or I don't know how to at the moment.