Merge pull request #5209 from matrix-org/erikj/reactions_base

Land basic reaction and edit support.
This commit is contained in:
Erik Johnston 2019-05-20 14:06:40 +01:00 committed by GitHub
commit 57ba3451b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 1439 additions and 16 deletions

View file

@ -101,6 +101,11 @@ class ServerConfig(Config):
"block_non_admin_invites", False,
)
# Whether to enable experimental MSC1849 (aka relations) support
self.experimental_msc1849_support_enabled = config.get(
"experimental_msc1849_support_enabled", False,
)
# Options to control access by tracking MAU
self.limit_usage_by_mau = config.get("limit_usage_by_mau", False)
self.max_mau_value = 0