summary refs log tree commit diff
path: root/synapse/appservice/api.py
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/appservice/api.py
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/appservice/api.py')
-rw-r--r--synapse/appservice/api.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/appservice/api.py b/synapse/appservice/api.py
index 632dc1a4f8..24253e7785 100644
--- a/synapse/appservice/api.py
+++ b/synapse/appservice/api.py
@@ -14,11 +14,11 @@
 # limitations under the License.
 from twisted.internet import defer
 
+from synapse.api.constants import ThirdPartyEntityKind
 from synapse.api.errors import CodeMessageException
 from synapse.http.client import SimpleHttpClient
 from synapse.events.utils import serialize_event
 from synapse.util.caches.response_cache import ResponseCache
-from synapse.types import ThirdPartyEntityKind
 
 import logging
 import urllib