summary refs log tree commit diff
path: root/synapse/storage
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2018-05-29 20:25:12 +0100
committerGitHub <noreply@github.com>2018-05-29 20:25:12 +0100
commit711f61a31d581bd7392ddc56ac87e6309607c974 (patch)
treeeb66dac49778e24d1d91a61b1c41f42b12335101 /synapse/storage
parentMerge pull request #3302 from krombel/py3_extend_tox_testing (diff)
parentfix tests (diff)
downloadsynapse-711f61a31d581bd7392ddc56ac87e6309607c974.tar.xz
Merge pull request #3304 from matrix-org/rav/exempt_as_users_from_gdpr
Exempt AS-registered users from doing gdpr
Diffstat (limited to 'synapse/storage')
-rw-r--r--synapse/storage/registration.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/storage/registration.py b/synapse/storage/registration.py
index a530e29f43..40f7cc16ee 100644
--- a/synapse/storage/registration.py
+++ b/synapse/storage/registration.py
@@ -36,6 +36,7 @@ class RegistrationWorkerStore(SQLBaseStore):
             retcols=[
                 "name", "password_hash", "is_guest",
                 "consent_version", "consent_server_notice_sent",
+                "appservice_id",
             ],
             allow_none=True,
             desc="get_user_by_id",