diff options
author | Shay <hillerys@element.io> | 2024-03-19 10:52:53 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-19 17:52:53 +0000 |
commit | 8fb5b0f335b3dc54962aea102c71a7e449497487 (patch) | |
tree | 698b5e92f822198a51131108a15fe61ac1501358 /synapse/api | |
parent | Bump pydantic from 2.6.0 to 2.6.4 (#17004) (diff) | |
download | synapse-8fb5b0f335b3dc54962aea102c71a7e449497487.tar.xz |
Improve event validation (#16908)
As the title states.
Diffstat (limited to 'synapse/api')
-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 d25aff98ff..98884b4967 100644 --- a/synapse/api/constants.py +++ b/synapse/api/constants.py @@ -129,6 +129,8 @@ class EventTypes: Reaction: Final = "m.reaction" + CallInvite: Final = "m.call.invite" + class ToDeviceEventTypes: RoomKeyRequest: Final = "m.room_key_request" |