summary refs log tree commit diff
path: root/synapse/types.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/types.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/types.py')
-rw-r--r--synapse/types.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/synapse/types.py b/synapse/types.py

index fd17ecbbe0..5349b0c450 100644 --- a/synapse/types.py +++ b/synapse/types.py
@@ -269,10 +269,3 @@ class RoomStreamToken(namedtuple("_StreamToken", "topological stream")): return "t%d-%d" % (self.topological, self.stream) else: return "s%d" % (self.stream,) - - -# Some arbitrary constants used for internal API enumerations. Don't rely on -# exact values; always pass or compare symbolically -class ThirdPartyEntityKind(object): - USER = 'user' - LOCATION = 'location'