From 8fd1a324564510be55a7c1e6b6339f736f5c525a Mon Sep 17 00:00:00 2001
From: Richard van der Hoff <richard@matrix.org>
Date: Tue, 13 Feb 2018 13:04:41 +0000
Subject: [PATCH] Fix typos in purge api & doc

* It's supposed to be purge_local_events, not ..._history
* Fix the doc to have valid json
---
 docs/admin_api/purge_history_api.rst | 2 +-
 synapse/rest/client/v1/admin.py      | 4 +---
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/docs/admin_api/purge_history_api.rst b/docs/admin_api/purge_history_api.rst
index b4e5bd9d75..a3a17e9f9f 100644
--- a/docs/admin_api/purge_history_api.rst
+++ b/docs/admin_api/purge_history_api.rst
@@ -23,5 +23,5 @@ To delete local events as well, set ``delete_local_events`` in the body:
 .. code:: json
 
    {
-       "delete_local_events": True,
+       "delete_local_events": true
    }
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,
-- 
GitLab