summary refs log tree commit diff
path: root/synapse/rest/client/v1/initial_sync.py
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2015-01-23 14:09:51 +0000
committerMark Haines <mark.haines@matrix.org>2015-01-23 14:09:51 +0000
commit4be637cb120f00e5de99c12a79e908e2f26da8af (patch)
treec45fe4e767d585ddbfae9fc92d164e99651d2372 /synapse/rest/client/v1/initial_sync.py
parentMerge pull request #32 from matrix-org/remove_parse_id_from_hs (diff)
downloadsynapse-4be637cb120f00e5de99c12a79e908e2f26da8af.tar.xz
Extract the client v1 base RestServlet to a separate class
Diffstat (limited to 'synapse/rest/client/v1/initial_sync.py')
-rw-r--r--synapse/rest/client/v1/initial_sync.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/rest/client/v1/initial_sync.py b/synapse/rest/client/v1/initial_sync.py

index b13d56b286..357fa845b4 100644 --- a/synapse/rest/client/v1/initial_sync.py +++ b/synapse/rest/client/v1/initial_sync.py
@@ -16,11 +16,11 @@ from twisted.internet import defer from synapse.streams.config import PaginationConfig -from base import RestServlet, client_path_pattern +from base import ClientV1RestServlet, client_path_pattern # TODO: Needs unit testing -class InitialSyncRestServlet(RestServlet): +class InitialSyncRestServlet(ClientV1RestServlet): PATTERN = client_path_pattern("/initialSync$") @defer.inlineCallbacks