summary refs log tree commit diff
path: root/synapse/rest/admin
diff options
context:
space:
mode:
Diffstat (limited to 'synapse/rest/admin')
-rw-r--r--synapse/rest/admin/rooms.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/rest/admin/rooms.py b/synapse/rest/admin/rooms.py
index ed54c8bb64..9e31d018b1 100644
--- a/synapse/rest/admin/rooms.py
+++ b/synapse/rest/admin/rooms.py
@@ -160,6 +160,8 @@ class DeleteRoomStatusByRoomIdRestServlet(RestServlet):
 
         response = []
         for delete_status in delete_statuses:
+            # We ignore scheduled deletes because currently they are only used
+            # for automatically purging forgotten room after X time.
             if delete_status.status != DeleteStatus.STATUS_SCHEDULED:
                 response += [delete_status.asdict()]