Skip to content
Snippets Groups Projects
Commit ffdc8e5e authored by Steven Hammerton's avatar Steven Hammerton
Browse files

Snakes not camels

parent 2b779af1
No related branches found
No related tags found
No related merge requests found
......@@ -295,14 +295,14 @@ class CasRedirectServlet(ClientV1RestServlet):
args = request.args
if "redirectUrl" not in args:
return (400, "Redirect URL not specified for CAS auth")
clientRedirectUrlParam = urllib.urlencode({
client_redirect_url_param = urllib.urlencode({
"redirectUrl": args["redirectUrl"][0]
})
hsRedirectUrl = self.cas_service_url + "/_matrix/client/api/v1/login/cas/ticket"
serviceParam = urllib.urlencode({
"service": "%s?%s" % (hsRedirectUrl, clientRedirectUrlParam)
hs_redirect_url = self.cas_service_url + "/_matrix/client/api/v1/login/cas/ticket"
service_param = urllib.urlencode({
"service": "%s?%s" % (hs_redirect_url, client_redirect_url_param)
})
request.redirect("%s?%s" % (self.cas_server_url, serviceParam))
request.redirect("%s?%s" % (self.cas_server_url, service_param))
request.finish()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment