summary refs log tree commit diff
path: root/synapse/rest/consent
diff options
context:
space:
mode:
authorNeil Johnson <neil@matrix.org>2018-11-28 11:24:57 +0000
committerAmber Brown <hawkowl@atleastfornow.net>2018-11-28 22:24:57 +1100
commit7039ece8fb633b97cd6166be636bae71fb3aa3c6 (patch)
tree0c90754b48070b8b489d9cdd624a806573205cdd /synapse/rest/consent
parentReport combined coverage to codecov (#4225) (diff)
downloadsynapse-7039ece8fb633b97cd6166be636bae71fb3aa3c6.tar.xz
Neilj/fix autojoin (#4223)
* Fix auto join failures for servers that require user consent

* Fix auto join failures for servers that require user consent
Diffstat (limited to 'synapse/rest/consent')
-rw-r--r--synapse/rest/consent/consent_resource.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/rest/consent/consent_resource.py b/synapse/rest/consent/consent_resource.py
index ad525b22e1..80611cfe84 100644
--- a/synapse/rest/consent/consent_resource.py
+++ b/synapse/rest/consent/consent_resource.py
@@ -89,6 +89,7 @@ class ConsentResource(Resource):
 
         self.hs = hs
         self.store = hs.get_datastore()
+        self.registration_handler = hs.get_handlers().registration_handler
 
         # this is required by the request_handler wrapper
         self.clock = hs.get_clock()
@@ -199,6 +200,7 @@ class ConsentResource(Resource):
             if e.code != 404:
                 raise
             raise NotFoundError("Unknown user")
+        yield self.registration_handler.post_consent_actions(qualified_user_id)
 
         try:
             self._render_template(request, "success.html")