Removed slash from v2 get all templates route

This commit is contained in:
Ken Tsang
2017-04-19 12:38:58 +01:00
parent d51fbf49e6
commit 4a63a337b2
2 changed files with 5 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ from app.v2.templates import v2_templates_blueprint
from app.v2.templates.templates_schemas import get_all_template_request
@v2_templates_blueprint.route("/", methods=['GET'])
@v2_templates_blueprint.route("", methods=['GET'])
def get_templates():
data = validate(request.args.to_dict(), get_all_template_request)