diff options
author | Erik Johnston <erik@matrix.org> | 2014-12-03 16:07:21 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-12-03 16:07:21 +0000 |
commit | 75b4329aaad400abcee4b23e9c88ff845e0d73c7 (patch) | |
tree | b2e947686ad0cf166e9dbcd8a5a3ac50555f862f /synapse/api/constants.py | |
parent | Merge branch 'develop' of github.com:matrix-org/synapse into events_refactor (diff) | |
download | synapse-75b4329aaad400abcee4b23e9c88ff845e0d73c7.tar.xz |
WIP for new way of managing events.
Diffstat (limited to 'synapse/api/constants.py')
-rw-r--r-- | synapse/api/constants.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/synapse/api/constants.py b/synapse/api/constants.py index 3cafff0e32..acf50e42ab 100644 --- a/synapse/api/constants.py +++ b/synapse/api/constants.py @@ -59,3 +59,12 @@ class LoginType(object): EMAIL_URL = u"m.login.email.url" EMAIL_IDENTITY = u"m.login.email.identity" RECAPTCHA = u"m.login.recaptcha" + + +class EventTypes(object): + Member = "m.room.member" + Create = "m.room.create" + JoinRules = "m.room.join_rules" + PowerLevels = "m.room.power_levels" + Aliases = "m.room.aliases" + Redaction = "m.room.redaction" \ No newline at end of file |