diff options
author | Travis Ralston <travisr@matrix.org> | 2022-11-28 16:29:53 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-28 16:29:53 -0700 |
commit | 3da645032722fbf09c1e5efbc51d8c5c78d8a2cd (patch) | |
tree | 9829bf818b0b6fd0925c6edf003f3d1d1d59bf80 /stubs | |
parent | Move MSC3030 `/timestamp_to_event` endpoint to stable v1 location (#14471) (diff) | |
download | synapse-3da645032722fbf09c1e5efbc51d8c5c78d8a2cd.tar.xz |
Initial support for MSC3931: Room version push rule feature flags (#14520)
* Add support for MSC3931: Room Version Supports push rule condition * Create experimental flag for future work, and use it to gate MSC3931 * Changelog entry
Diffstat (limited to 'stubs')
-rw-r--r-- | stubs/synapse/synapse_rust/push.pyi | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/stubs/synapse/synapse_rust/push.pyi b/stubs/synapse/synapse_rust/push.pyi index ceade65ef9..cbeb49663c 100644 --- a/stubs/synapse/synapse_rust/push.pyi +++ b/stubs/synapse/synapse_rust/push.pyi @@ -41,6 +41,8 @@ class PushRuleEvaluator: notification_power_levels: Mapping[str, int], related_events_flattened: Mapping[str, Mapping[str, str]], related_event_match_enabled: bool, + room_version_feature_flags: list[str], + msc3931_enabled: bool, ): ... def run( self, |