diff options
author | Mark Haines <mark.haines@matrix.org> | 2016-01-06 16:44:13 +0000 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2016-01-06 16:44:13 +0000 |
commit | 392773ccb271c8e456c497eec3d3b714f3d0d674 (patch) | |
tree | 1cf2838bb06c6613e684f30d8730576a4cd900f1 /synapse/api/errors.py | |
parent | Log when starting stats reporting (diff) | |
download | synapse-392773ccb271c8e456c497eec3d3b714f3d0d674.tar.xz |
Guest users must be joined to a room to see it in /sync
Diffstat (limited to 'synapse/api/errors.py')
-rw-r--r-- | synapse/api/errors.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/synapse/api/errors.py b/synapse/api/errors.py index 8bc7b9e6db..d4037b3d55 100644 --- a/synapse/api/errors.py +++ b/synapse/api/errors.py @@ -120,22 +120,6 @@ class AuthError(SynapseError): super(AuthError, self).__init__(*args, **kwargs) -class GuestAccessError(AuthError): - """An error raised when a there is a problem with a guest user accessing - a room""" - - def __init__(self, rooms, *args, **kwargs): - self.rooms = rooms - super(GuestAccessError, self).__init__(*args, **kwargs) - - def error_dict(self): - return cs_error( - self.msg, - self.errcode, - rooms=self.rooms, - ) - - class EventSizeError(SynapseError): """An error raised when an event is too big.""" |