summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2018-02-13 13:04:41 +0000
committerRichard van der Hoff <richard@matrix.org>2018-02-13 13:09:39 +0000
commit8fd1a324564510be55a7c1e6b6339f736f5c525a (patch)
tree4f136c4164639bd26a82da5fd36a1c185f790c14 /synapse
parentMerge pull request #2695 from okurz/feature/allow_recent_pysaml (diff)
downloadsynapse-8fd1a324564510be55a7c1e6b6339f736f5c525a.tar.xz
Fix typos in purge api & doc
* It's supposed to be purge_local_events, not ..._history
* Fix the doc to have valid json
Diffstat (limited to 'synapse')
-rw-r--r--synapse/rest/client/v1/admin.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/synapse/rest/client/v1/admin.py b/synapse/rest/client/v1/admin.py
index 2ad486c67d..6073cc6fa2 100644
--- a/synapse/rest/client/v1/admin.py
+++ b/synapse/rest/client/v1/admin.py
@@ -131,9 +131,7 @@ class PurgeHistoryRestServlet(ClientV1RestServlet):
 
         body = parse_json_object_from_request(request, allow_empty_body=True)
 
-        delete_local_events = bool(
-            body.get("delete_local_history", False)
-        )
+        delete_local_events = bool(body.get("delete_local_events", False))
 
         yield self.handlers.message_handler.purge_history(
             room_id, event_id,