implement contacts update

This commit is contained in:
2021-06-27 13:07:54 +02:00
parent 54a6686474
commit 68b84f50ca
4 changed files with 77 additions and 5 deletions

View File

@ -124,7 +124,7 @@ def get_user_profile(user_id):
@app.route("/users/<user_id>/profile", methods=["POST"])
@token_auth
def update_profile(user_id):
return update_profile_handler(user_id)
return update_profile_handler(int(user_id))
@app.route("/skills")