Update uses of encryption.encrypt to more accurate encryption.sign

This commit is contained in:
Ryan Ahearn
2022-12-07 14:55:05 -05:00
parent 52ce391405
commit b553ea4c77
14 changed files with 133 additions and 101 deletions

View File

@@ -300,7 +300,7 @@ def save_email_or_sms_to_queue(
"status": NOTIFICATION_CREATED,
"created_at": datetime.utcnow().strftime(DATETIME_FORMAT),
}
encrypted = encryption.encrypt(
encrypted = encryption.sign(
data
)