Supply params for terms auth stage

As per https://github.com/matrix-org/matrix-doc/pull/1692
This commit is contained in:
Travis Ralston 2018-10-03 15:25:53 -06:00
parent fd99787162
commit 149c4f1765

View File

@ -466,6 +466,15 @@ class AuthHandler(BaseHandler):
def _get_params_recaptcha(self):
return {"public_key": self.hs.config.recaptcha_public_key}
def _get_params_terms(self):
return {
"policies": [{
"name": "Privacy Policy",
"version": self.hs.config.user_consent_version,
"url": "%s/_matrix/consent/public" % (self.hs.config.public_baseurl,),
}],
}
def _auth_dict_for_flows(self, flows, session):
public_flows = []
for f in flows: