Redirect to login screen if GET on samlValidate
This commit is contained in:
parent
f71bd22954
commit
c16bb2d7f0
1 changed files with 2 additions and 0 deletions
|
@ -252,3 +252,5 @@ def samlValidate(request):
|
|||
return render(request, "cas_server/samlValidateError.xml", {'code':'VersionMismatch'}, content_type="text/xml; charset=utf-8")
|
||||
except models.ServiceTicket.DoesNotExist:
|
||||
return render(request, "cas_server/samlValidateError.xml", {'code':'AuthnFailed'}, content_type="text/xml; charset=utf-8")
|
||||
else:
|
||||
return redirect("login")
|
||||
|
|
Loading…
Reference in a new issue