mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-17 02:32:32 -05:00
remove debug
This commit is contained in:
@@ -307,9 +307,7 @@ def send_user_2fa_code(user_id, code_type):
|
||||
|
||||
|
||||
def send_user_sms_code(user_to_send_to, data):
|
||||
print(hilite("SEND_USER_SMS_CODE"))
|
||||
recipient = data.get("to") or user_to_send_to.mobile_number
|
||||
print(hilite(f"RECIPIENT {recipient}"))
|
||||
secret_code = create_secret_code()
|
||||
personalisation = {"verify_code": secret_code}
|
||||
|
||||
@@ -373,7 +371,6 @@ def create_2fa_code(
|
||||
key = f"2facode-{saved_notification.id}".replace(" ", "")
|
||||
recipient = str(recipient)
|
||||
redis_store.set(key, recipient, ex=60 * 60)
|
||||
print(hilite(f"SET REDIS 2facode-{saved_notification.id} to {recipient}"))
|
||||
|
||||
# Assume that we never want to observe the Notify service's research mode
|
||||
# setting for this notification - we still need to be able to log into the
|
||||
|
||||
Reference in New Issue
Block a user