diff options
author | Richard van der Hoff <richard@matrix.org> | 2018-05-29 19:54:32 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2018-05-29 19:54:32 +0100 |
commit | 4a9cbdbc1543378a5f2a5bfde825c3886deaadf5 (patch) | |
tree | 89c2ddc000c5efccc84b976a3e4e3b44aaeb8c70 /synapse/storage/registration.py | |
parent | Merge pull request #3299 from matrix-org/matthew/macos-fixes (diff) | |
download | synapse-4a9cbdbc1543378a5f2a5bfde825c3886deaadf5.tar.xz |
Exempt AS-registered users from doing gdpr
Diffstat (limited to 'synapse/storage/registration.py')
-rw-r--r-- | synapse/storage/registration.py | 1 |
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", |