diff options
author | Neil Johnson <neil@matrix.org> | 2018-08-15 15:04:30 +0100 |
---|---|---|
committer | Neil Johnson <neil@matrix.org> | 2018-08-15 15:04:30 +0100 |
commit | c24fc9797bc0dd59c0d8131ea09c1178e39b76f6 (patch) | |
tree | be23765f5afc564053727c71b2d9d40d6c3bd407 | |
parent | backout ability to pass in event type to server notices (diff) | |
download | synapse-c24fc9797bc0dd59c0d8131ea09c1178e39b76f6.tar.xz |
add new event types
-rw-r--r-- | synapse/api/constants.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/api/constants.py b/synapse/api/constants.py index ef60841995..1fb24578e2 100644 --- a/synapse/api/constants.py +++ b/synapse/api/constants.py @@ -78,6 +78,7 @@ class EventTypes(object): Name = "m.room.name" ServerACL = "m.room.server_acl" + Pinned = "m.room.pinned_events" ServerNoticeLimitReached = "m.server_notice.usage_limit_reached" |