Skip to content
Snippets Groups Projects
Commit 827b717a authored by Art's avatar Art :lizard:
Browse files

Fix the error code for the ACS view GET

parent f71bca73
Branches
No related tags found
No related merge requests found
...@@ -152,7 +152,7 @@ class ACSAuthNView(SAMLMixin, View): ...@@ -152,7 +152,7 @@ class ACSAuthNView(SAMLMixin, View):
""" """
def get(self, *args, **kwargs): def get(self, *args, **kwargs):
raise http.Http404() return http.HttpResponse(status=405)
def post(self, request, *args, **kwargs): def post(self, request, *args, **kwargs):
auth = self.get_onelogin_auth(request) auth = self.get_onelogin_auth(request)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment