summary refs log tree commit diff
path: root/synapse/rest/client
diff options
context:
space:
mode:
authorPaul "LeoNerd" Evans <paul@matrix.org>2016-08-25 18:34:47 +0100
committerPaul "LeoNerd" Evans <paul@matrix.org>2016-08-25 18:34:47 +0100
commit1294d4a3299faba9b5f09ec6f452dfb2ab9f5e35 (patch)
tree399b50b75d5836d88292425721ac5faa40386a47 /synapse/rest/client
parentRoot the 3PE lookup API within /_matrix/app/unstable instead of at toplevel (diff)
downloadsynapse-1294d4a3299faba9b5f09ec6f452dfb2ab9f5e35.tar.xz
Move ThirdPartyEntityKind into api.constants so the expectation becomes that the value is significant
Diffstat (limited to 'synapse/rest/client')
-rw-r--r--synapse/rest/client/v2_alpha/thirdparty.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/v2_alpha/thirdparty.py b/synapse/rest/client/v2_alpha/thirdparty.py
index bbc3e9b962..4f6f1a7e17 100644
--- a/synapse/rest/client/v2_alpha/thirdparty.py
+++ b/synapse/rest/client/v2_alpha/thirdparty.py
@@ -18,8 +18,8 @@ import logging
 
 from twisted.internet import defer
 
+from synapse.api.constants import ThirdPartyEntityKind
 from synapse.http.servlet import RestServlet
-from synapse.types import ThirdPartyEntityKind
 from ._base import client_v2_patterns
 
 logger = logging.getLogger(__name__)