8000 register some /unstable endpoints in /r0 as well by krombel · Pull Request #2579 · matrix-org/synapse · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

register some /unstable endpoints in /r0 as well #2579

Merged
merged 2 commits into from
Oct 26, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions synapse/rest/client/v2_alpha/devices.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@


class DevicesRestServlet(servlet.RestServlet):
PATTERNS = client_v2_patterns("/devices$", releases=[], v2_alpha=False)
PATTERNS = client_v2_patterns("/devices$", v2_alpha=False)

def __init__(self, hs):
"""
Expand All @@ -51,7 +51,7 @@ class DeleteDevicesRestServlet(servlet.RestServlet):
API for bulk deletion of devices. Accepts a JSON object with a devices
key which lists the device_ids to delete. Requires user interactive auth.
"""
PATTERNS = client_v2_patterns("/delete_devices", releases=[], v2_alpha=False)
PATTERNS = client_v2_patterns("/delete_devices", v2_alpha=False)

def __init__(self, hs):
super(DeleteDevicesRestServlet, self).__init__()
Expand Down Expand Up @@ -93,8 +93,7 @@ def on_POST(self, request):


class DeviceRestServlet(servlet.RestServlet):
PATTERNS = client_v2_patterns("/devices/(?P<device_id>[^/]*)$",
releases=[], v2_alpha=False)
PATTERNS = client_v2_patterns("/devices/(?P<device_id>[^/]*)$", v2_alpha=False)

def __init__(self, hs):
"""
Expand Down
18 changes: 4 additions & 14 deletions synapse/rest/client/v2_alpha/keys.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,7 @@ class KeyUploadServlet(RestServlet):
},
}
"""
PATTERNS = client_v2_patterns("/keys/upload(/(?P<device_id>[^/]+))?$",
releases=())
PATTERNS = client_v2_patterns("/keys/upload(/(?P<device_id>[^/]+))?$")

def __init__(self, hs):
"""
Expand Down Expand Up @@ -128,10 +127,7 @@ class KeyQueryServlet(RestServlet):
} } } } } }
"""

PATTERNS = client_v2_patterns(
"/keys/query$",
releases=()
)
PATTERNS = client_v2_patterns("/keys/query$")

def __init__(self, hs):
"""
Expand Down Expand Up @@ -160,10 +156,7 @@ class KeyChangesServlet(RestServlet):
200 OK
{ "changed": ["@foo:example.com"] }
"""
PATTERNS = client_v2_patterns(
"/keys/changes$",
releases=()
)
PATTERNS = client_v2_patterns("/keys/changes$")

def __init__(self, hs):
"""
Expand Down Expand Up @@ -213,10 +206,7 @@ class OneTimeKeyServlet(RestServlet):
} } } }

"""
PATTERNS = client_v2_patterns(
"/keys/claim$",
releases=()
)
PATTERNS = client_v2_patterns("/keys/claim$")

def __init__(self, hs):
super(OneTimeKeyServlet, self).__init__()
Expand Down
2 changes: 1 addition & 1 deletion synapse/rest/client/v2_alpha/notifications.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@


class NotificationsServlet(RestServlet):
PATTERNS = client_v2_patterns("/notifications$", releases=())
PATTERNS = client_v2_patterns("/notifications$")

def __init__(self, hs):
super(NotificationsServlet, self).__init__()
Expand Down
2 changes: 1 addition & 1 deletion synapse/rest/client/v2_alpha/sendtodevice.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
class SendToDeviceRestServlet(servlet.RestServlet):
PATTERNS = client_v2_patterns(
"/sendToDevice/(?P<message_type>[^/]*)/(?P<txn_id>[^/]*)$",
releases=[], v2_alpha=False
v2_alpha=False
)

def __init__(self, hs):
Expand Down
11 changes: 4 additions & 7 deletions synapse/rest/client/v2_alpha/thirdparty.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@


class ThirdPartyProtocolsServlet(RestServlet):
PATTERNS = client_v2_patterns("/thirdparty/protocols", releases=())
PATTERNS = client_v2_patterns("/thirdparty/protocols")

def __init__(self, hs):
super(ThirdPartyProtocolsServlet, self).__init__()
Expand All @@ -43,8 +43,7 @@ def on_GET(self, request):


class ThirdPartyProtocolServlet(RestServlet):
PATTERNS = client_v2_patterns("/thirdparty/protocol/(?P<protocol>[^/]+)$",
releases=())
PATTERNS = client_v2_patterns("/thirdparty/protocol/(?P<protocol>[^/]+)$")

def __init__(self, hs):
super(ThirdPartyProtocolServlet, self).__init__()
Expand All @@ -66,8 +65,7 @@ def on_GET(self, request, protocol):


class ThirdPartyUserServlet(RestServlet):
PATTERNS = client_v2_patterns("/thirdparty/user(/(?P<protocol>[^/]+))?$",
releases=())
PATTERNS = client_v2_patterns("/thirdparty/user(/(?P<protocol>[^/]+))?$")

def __init__(self, hs):
super(ThirdPartyUserServlet, self).__init__()
Expand All @@ -90,8 +88,7 @@ def on_GET(self, request, protocol):


class ThirdPartyLocationServlet(RestServlet):
PATTERNS = client_v2_patterns("/thirdparty/location(/(?P<protocol>[^/]+))?$",
releases=())
PATTERNS = client_v2_patterns("/thirdparty/location(/(?P<protocol>[^/]+))?$")

def __init__(self, hs):
super(ThirdPartyLocationServlet, self).__init__()
Expand Down
0