mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-02 17:48:50 -04:00
Fix bug with send_verify_code not including the to field.
This commit is contained in:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user