diff options
author | Erik Johnston <erikj@jki.re> | 2019-01-29 21:40:00 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-29 21:40:00 +0000 |
commit | 6f9cdc2d47239f6cb7596a2a875379287a8fe83a (patch) | |
tree | 0edf9ec31f152ef45541b16ff9ed4a3c68bac142 /synapse/api/constants.py | |
parent | Merge pull request #4512 from matrix-org/anoa/consent_dir (diff) | |
parent | Newsfile (diff) | |
download | synapse-6f9cdc2d47239f6cb7596a2a875379287a8fe83a.tar.xz |
Merge pull request #4483 from matrix-org/erikj/event_v2
Implement event format V2
Diffstat (limited to 'synapse/api/constants.py')
-rw-r--r-- | synapse/api/constants.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/api/constants.py b/synapse/api/constants.py index 51ee078bc3..b248e193fa 100644 --- a/synapse/api/constants.py +++ b/synapse/api/constants.py @@ -126,10 +126,12 @@ class EventFormatVersions(object): independently from the room version. """ V1 = 1 + V2 = 2 KNOWN_EVENT_FORMAT_VERSIONS = { EventFormatVersions.V1, + EventFormatVersions.V2, } |