remove some previous debugging things
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
@ -108,7 +108,6 @@ class ChallengeStageView(StageView):
|
|||||||
|
|
||||||
def post(self, request: Request, *args, **kwargs) -> HttpResponse:
|
def post(self, request: Request, *args, **kwargs) -> HttpResponse:
|
||||||
"""Handle challenge response"""
|
"""Handle challenge response"""
|
||||||
print(request.data)
|
|
||||||
valid = False
|
valid = False
|
||||||
try:
|
try:
|
||||||
challenge: ChallengeResponse = self.get_response_instance(data=request.data)
|
challenge: ChallengeResponse = self.get_response_instance(data=request.data)
|
||||||
|
@ -38,6 +38,6 @@ class FlowInterfaceView(InterfaceView):
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
def get_template_names(self) -> list[str]:
|
def get_template_names(self) -> list[str]:
|
||||||
# if self.compat_needs_sfe() or "sfe" in self.request.GET:
|
if self.compat_needs_sfe() or "sfe" in self.request.GET:
|
||||||
return ["if/flow-sfe.html"]
|
return ["if/flow-sfe.html"]
|
||||||
# return ["if/flow.html"]
|
return ["if/flow.html"]
|
||||||
|
Reference in New Issue
Block a user