from web import models from bootstrap import application, manager from web.views.api.v3.common import check_auth blueprint_article = manager.create_api_blueprint(models.Article, methods=['GET', 'POST', 'PUT', 'DELETE'], preprocessors=dict(GET_SINGLE=[check_auth])) application.register_blueprint(blueprint_article)