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

@ -119,3 +119,11 @@ class UserTypes(object):
"""
SUPPORT = "support"
ALL_USER_TYPES = (SUPPORT,)
class RelationTypes(object):
"""The types of relations known to this server.
"""
ANNOTATION = "m.annotation"
REPLACES = "m.replaces"
REFERENCES = "m.references"