Refactor and fix auth errors

This commit is contained in:
Ken Tsang
2017-03-22 10:54:15 +00:00
parent b81d789307
commit 8e5266e89b
4 changed files with 16 additions and 11 deletions

View File

@@ -2,6 +2,6 @@ from flask import Blueprint
from app.v2.errors import register_errors
template_blueprint = Blueprint("v2_template", __name__, url_prefix='/v2/template')
v2_template_blueprint = Blueprint("v2_template", __name__, url_prefix='/v2/template')
register_errors(template_blueprint)
register_errors(v2_template_blueprint)