diff options
author | Erik Johnston <erik@matrix.org> | 2014-11-17 10:29:23 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-11-17 10:29:23 +0000 |
commit | 8c45c8b8b98c5a0e98bf4051994fed9847aadd08 (patch) | |
tree | 12c7ac945749c68b81e3ae55c39dfd58ae824bf0 /synapse/api/events/__init__.py | |
parent | Move getLastMessage to modelService. (diff) | |
parent | Merge remote-tracking branch 'origin/develop' into merge_pdu_event_objects (diff) | |
download | synapse-8c45c8b8b98c5a0e98bf4051994fed9847aadd08.tar.xz |
Merge pull request #14 from matrix-org/merge_pdu_event_objects
Merge pdu and event objects
Diffstat (limited to 'synapse/api/events/__init__.py')
-rw-r--r-- | synapse/api/events/__init__.py | 6 |
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): |