flows: fix error due to not validating error challenge
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
f8fab14e1e
commit
9d0a7578ec
|
@ -253,9 +253,9 @@ class FlowExecutorView(APIView):
|
||||||
action=EventAction.SYSTEM_EXCEPTION,
|
action=EventAction.SYSTEM_EXCEPTION,
|
||||||
message=exception_to_string(exc),
|
message=exception_to_string(exc),
|
||||||
).from_http(self.request)
|
).from_http(self.request)
|
||||||
return to_stage_response(
|
challenge = FlowErrorChallenge(self.request, exc)
|
||||||
self.request, HttpChallengeResponse(FlowErrorChallenge(self.request, exc))
|
challenge.is_valid()
|
||||||
)
|
return to_stage_response(self.request, HttpChallengeResponse(challenge))
|
||||||
|
|
||||||
@extend_schema(
|
@extend_schema(
|
||||||
responses={
|
responses={
|
||||||
|
|
Reference in a new issue