summary refs log tree commit diff
path: root/synapse/rest/client/v2_alpha/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'synapse/rest/client/v2_alpha/__init__.py')
-rw-r--r--synapse/rest/client/v2_alpha/__init__.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/synapse/rest/client/v2_alpha/__init__.py b/synapse/rest/client/v2_alpha/__init__.py

index bb740e2803..8f611de3a8 100644 --- a/synapse/rest/client/v2_alpha/__init__.py +++ b/synapse/rest/client/v2_alpha/__init__.py
@@ -13,6 +13,10 @@ # See the License for the specific language governing permissions and # limitations under the License. +from . import ( + sync, + filter +) from synapse.http.server import JsonResource @@ -26,4 +30,5 @@ class ClientV2AlphaRestResource(JsonResource): @staticmethod def register_servlets(client_resource, hs): - pass + sync.register_servlets(hs, client_resource) + filter.register_servlets(hs, client_resource)