Skip to content

Commit

Permalink
register some /unstable endpoints in /r0 as well
Browse files Browse the repository at this point in the history
  • Loading branch information
krombel committed Oct 26, 2017
1 parent 5b38fda commit 9b436c8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 20 deletions.
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

0 comments on commit 9b436c8

Please sign in to comment.