Remove trailing slashing from urls

This commit is contained in:
Rebecca Law
2016-01-15 16:44:46 +00:00
parent e2e494c30b
commit b05ad17029
2 changed files with 2 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ user = Blueprint('user', __name__)
# TODO auth to be added
@user.route('/', methods=['POST'])
@user.route('', methods=['POST'])
def create_user():
user, errors = user_schema.load(request.get_json())
if errors: