summary refs log tree commit diff
path: root/synapse/api/constants.py
diff options
context:
space:
mode:
authorPaul Evans <leonerd@leonerd.org.uk>2016-08-25 18:49:18 +0100
committerGitHub <noreply@github.com>2016-08-25 18:49:18 +0100
commit1a1e198f72a1ce0124ee0060be5b27cb8c6d5e5a (patch)
tree3f78b4a5870743e84c984446231546011da0927c /synapse/api/constants.py
parentMerge pull request #1041 from matrix-org/paul/third-party-lookup (diff)
parentJust sprintf the 'kind' argument into uri directly (diff)
downloadsynapse-1a1e198f72a1ce0124ee0060be5b27cb8c6d5e5a.tar.xz
Merge pull request #1044 from matrix-org/paul/third-party-lookup
Root the 3PE lookup API within /_matrix/app/unstable
Diffstat (limited to 'synapse/api/constants.py')
-rw-r--r--synapse/api/constants.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/synapse/api/constants.py b/synapse/api/constants.py
index 8cf4d6169c..a8123cddcb 100644
--- a/synapse/api/constants.py
+++ b/synapse/api/constants.py
@@ -85,3 +85,8 @@ class RoomCreationPreset(object):
     PRIVATE_CHAT = "private_chat"
     PUBLIC_CHAT = "public_chat"
     TRUSTED_PRIVATE_CHAT = "trusted_private_chat"
+
+
+class ThirdPartyEntityKind(object):
+    USER = "user"
+    LOCATION = "location"