summary refs log tree commit diff
path: root/synapse/rest/client/v2_alpha/sendtodevice.py
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2019-05-15 17:37:46 +0100
committerGitHub <noreply@github.com>2019-05-15 17:37:46 +0100
commit5f027a315fbf010c213ca6f88141404ed86d05ef (patch)
tree2b4c15b40a58edcca0ac4e0646a51369c916c0c6 /synapse/rest/client/v2_alpha/sendtodevice.py
parentMerge branch 'master' into develop (diff)
downloadsynapse-5f027a315fbf010c213ca6f88141404ed86d05ef.tar.xz
Drop support for v2_alpha API prefix (#5190)
Diffstat (limited to 'synapse/rest/client/v2_alpha/sendtodevice.py')
-rw-r--r--synapse/rest/client/v2_alpha/sendtodevice.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/synapse/rest/client/v2_alpha/sendtodevice.py b/synapse/rest/client/v2_alpha/sendtodevice.py
index a9e9a47a0b..21e9cef2d0 100644
--- a/synapse/rest/client/v2_alpha/sendtodevice.py
+++ b/synapse/rest/client/v2_alpha/sendtodevice.py
@@ -29,7 +29,6 @@ logger = logging.getLogger(__name__)
 class SendToDeviceRestServlet(servlet.RestServlet):
     PATTERNS = client_v2_patterns(
         "/sendToDevice/(?P<message_type>[^/]*)/(?P<txn_id>[^/]*)$",
-        v2_alpha=False
     )
 
     def __init__(self, hs):