diff options
author | Erik Johnston <erik@matrix.org> | 2017-08-08 11:50:09 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-08-08 13:01:46 +0100 |
commit | 05e21285aae4a0411a9ec1151ce006297fa3ca91 (patch) | |
tree | 5a28f0ca22be50d0768406c826a6123d163dc7b2 /synapse/storage/group_server.py | |
parent | Remove stale TODO comments (diff) | |
download | synapse-05e21285aae4a0411a9ec1151ce006297fa3ca91.tar.xz |
Store whether the user wants to publicise their membership of a group
Diffstat (limited to 'synapse/storage/group_server.py')
-rw-r--r-- | synapse/storage/group_server.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/storage/group_server.py b/synapse/storage/group_server.py index f44e80b514..31514f3cdb 100644 --- a/synapse/storage/group_server.py +++ b/synapse/storage/group_server.py @@ -840,6 +840,7 @@ class GroupServerStore(SQLBaseStore): is_admin=False, content={}, local_attestation=None, remote_attestation=None, + is_publicised=False, ): """Registers that a local user is a member of a (local or remote) group. @@ -873,6 +874,7 @@ class GroupServerStore(SQLBaseStore): "user_id": user_id, "is_admin": is_admin, "membership": membership, + "is_publicised": is_publicised, "content": json.dumps(content), }, ) |