diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-05-15 17:37:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-15 17:37:46 +0100 |
commit | 5f027a315fbf010c213ca6f88141404ed86d05ef (patch) | |
tree | 2b4c15b40a58edcca0ac4e0646a51369c916c0c6 /synapse/rest/client/v2_alpha/sendtodevice.py | |
parent | Merge branch 'master' into develop (diff) | |
download | synapse-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.py | 1 |
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): |