diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2018-05-29 20:25:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-29 20:25:12 +0100 |
commit | 711f61a31d581bd7392ddc56ac87e6309607c974 (patch) | |
tree | eb66dac49778e24d1d91a61b1c41f42b12335101 /synapse/storage | |
parent | Merge pull request #3302 from krombel/py3_extend_tox_testing (diff) | |
parent | fix tests (diff) | |
download | synapse-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.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", |