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..4349579ab7 100644 --- a/synapse/rest/client/v2_alpha/__init__.py +++ b/synapse/rest/client/v2_alpha/__init__.py
@@ -14,6 +14,11 @@ # limitations under the License. +from . import ( + filter +) + + from synapse.http.server import JsonResource @@ -26,4 +31,4 @@ class ClientV2AlphaRestResource(JsonResource): @staticmethod def register_servlets(client_resource, hs): - pass + filter.register_servlets(hs, client_resource)