summary refs log tree commit diff
path: root/synapse/storage
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2018-05-29 19:54:32 +0100
committerRichard van der Hoff <richard@matrix.org>2018-05-29 19:54:32 +0100
commit4a9cbdbc1543378a5f2a5bfde825c3886deaadf5 (patch)
tree89c2ddc000c5efccc84b976a3e4e3b44aaeb8c70 /synapse/storage
parentMerge pull request #3299 from matrix-org/matthew/macos-fixes (diff)
downloadsynapse-4a9cbdbc1543378a5f2a5bfde825c3886deaadf5.tar.xz
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",