fix: registration extra fields response (#33183)
This commit is contained in:
committed by
GitHub
parent
cac1159552
commit
377c0bf79b
@@ -120,8 +120,11 @@ class MFEContextViewTest(ThirdPartyAuthTestMixin, APITestCase):
|
||||
'welcomePageRedirectUrl': None,
|
||||
'pipelineUserDetails': self.pipeline_user_details,
|
||||
},
|
||||
'registrationFields': {},
|
||||
'registrationFields': {
|
||||
'fields': {},
|
||||
},
|
||||
'optionalFields': {
|
||||
'fields': {},
|
||||
'extended_profile': [],
|
||||
},
|
||||
}
|
||||
|
||||
@@ -72,8 +72,11 @@ class MFEContextView(APIView):
|
||||
|
||||
context = {
|
||||
'context_data': get_mfe_context(request, redirect_to, third_party_auth_hint),
|
||||
'registration_fields': {},
|
||||
'registration_fields': {
|
||||
'fields': {},
|
||||
},
|
||||
'optional_fields': {
|
||||
'fields': {},
|
||||
'extended_profile': []
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user