Skip to content
Snippets Groups Projects
Unverified Commit d9aaa582 authored by Bianca Severino's avatar Bianca Severino Committed by GitHub
Browse files

Merge pull request #24761 from edx/bseverino/idv-email

[MST-354] Update URLs in ID verification-related emails
parents e31f6887 4d19d968
No related branches found
No related tags found
No related merge requests found
......@@ -191,7 +191,7 @@ class Command(BaseCommand):
message_context = get_base_template_context(site)
message_context.update({
'platform_name': settings.PLATFORM_NAME,
'lms_verification_link': IDVerificationService.email_reverify_url(),
'lms_verification_link': '{}/id-verification'.format(settings.ACCOUNT_MICROFRONTEND_URL),
'help_center_link': settings.ID_VERIFICATION_SUPPORT_LINK
})
......
......@@ -264,15 +264,3 @@ class IDVerificationService(object):
else:
location = reverse(url_name)
return location
@classmethod
def email_reverify_url(cls):
"""
Return a URL string for reverification emails:
If waffle flag is active, returns URL for IDV microfrontend.
Else, returns URL for reverify view.
"""
if redirect_to_idv_microfrontend():
return '{}/id-verification'.format(settings.ACCOUNT_MICROFRONTEND_URL)
else:
return '{}{}'.format(settings.LMS_ROOT_URL, reverse('verify_student_reverify'))
......@@ -1144,7 +1144,7 @@ def results_callback(request):
log.debug(u"Denying verification for %s", receipt_id)
attempt.deny(json.dumps(reason), error_code=error_code)
status = "denied"
reverify_url = IDVerificationService.email_reverify_url()
reverify_url = '{}/id-verification'.format(settings.ACCOUNT_MICROFRONTEND_URL)
verification_status_email_vars['reasons'] = reason
verification_status_email_vars['reverify_url'] = reverify_url
verification_status_email_vars['faq_url'] = settings.ID_VERIFICATION_SUPPORT_LINK
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment