1 files changed, 6 insertions, 0 deletions
diff --git a/synapse/api/events/__init__.py b/synapse/api/events/__init__.py
index 1d8bed2906..63c0bd7ae7 100644
--- a/synapse/api/events/__init__.py
+++ b/synapse/api/events/__init__.py
@@ -117,6 +117,12 @@ class SynapseEvent(JsonEncodedObject):
"""
raise NotImplementedError("get_content_template not implemented.")
+ def get_pdu_json(self):
+ pdu_json = self.get_full_dict()
+ pdu_json.pop("destination", None)
+ pdu_json.pop("outlier", None)
+ return pdu_json
+
class SynapseStateEvent(SynapseEvent):
|