Add schemas, endpoints and supporting tests

This commit is contained in:
Ken Tsang
2017-03-14 15:25:36 +00:00
parent ac8e55628c
commit 9e4b1b2bfc
8 changed files with 271 additions and 0 deletions

View File

@@ -110,9 +110,11 @@ def register_blueprint(application):
def register_v2_blueprints(application):
from app.v2.notifications.post_notifications import notification_blueprint as post_notifications
from app.v2.notifications.get_notifications import notification_blueprint as get_notifications
from app.v2.template.get_template import template_blueprint
application.register_blueprint(post_notifications)
application.register_blueprint(get_notifications)
application.register_blueprint(template_blueprint)
def init_app(app):