Move ThirdPartyEntityKind into api.constants so the expectation becomes that the value is significant

This commit is contained in:
Paul "LeoNerd" Evans 2016-08-25 18:34:47 +01:00
parent e7af8be5ae
commit 1294d4a329
4 changed files with 7 additions and 9 deletions

View file

@ -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'