aboutsummaryrefslogtreecommitdiff
path: root/src/web/views/api/v3/article.py
blob: da75dc47c7a00741b571910692cc6913a518c736 (plain)
1
2
3
4
5
6
7
8
9
from web import models
from bootstrap import application, manager
from web.views.api.v3.common import auth_func, check_auth


blueprint_article = manager.create_api_blueprint(models.Article,
                        methods=['GET', 'POST', 'PUT', 'DELETE'],
                        preprocessors=dict(GET_SINGLE=[auth_func, check_auth]))
application.register_blueprint(blueprint_article)
bgstack15