Fix bug with send_verify_code not including the to field.

This commit is contained in:
Nicholas Staples
2016-02-22 12:33:59 +00:00
parent b4ddcaa9b1
commit 980c01e10c
7 changed files with 11 additions and 11 deletions

View File

@@ -57,8 +57,8 @@ def request_password_reset(user):
user_api_client.update_user(user)
def send_verify_code(user_id, code_type, to=None):
return user_api_client.send_verify_code(user_id, code_type, to=to)
def send_verify_code(user_id, code_type, to):
return user_api_client.send_verify_code(user_id, code_type, to)
def check_verify_code(user_id, code, code_type):