We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d754f6a commit a53cbd4Copy full SHA for a53cbd4
apollo/participants/api/views.py
@@ -235,7 +235,7 @@ def _process_2fa_login(participant: Participant):
235
result = _generate_or_retrieve_otp(key)
236
if result:
237
response = jsonify({"status": "ok", "data": {"uid": str(participant.uuid), "twoFactor": True}})
238
- message = gettext("Your Apollo verification code is: %(code)s", code=result)
+ message = gettext("Your Apollo verification code is: %(totp_code)s", totp_code=result)
239
send_message.delay(g.event.id, message, participant.primary_phone)
240
return response
241
else:
0 commit comments