diff options
author | Daniel Wagner-Hall <dawagner@gmail.com> | 2016-02-12 15:11:59 +0000 |
---|---|---|
committer | Daniel Wagner-Hall <dawagner@gmail.com> | 2016-02-12 15:11:59 +0000 |
commit | d7aa103f00be191c107a9ee148727c5e52fb8005 (patch) | |
tree | 00826864651550411f164dcb510cd1f7d6e5b6de /synapse/api | |
parent | Merge pull request #574 from matrix-org/markjh/connection_closed (diff) | |
parent | Merge two of the room join codepaths (diff) | |
download | synapse-d7aa103f00be191c107a9ee148727c5e52fb8005.tar.xz |
Merge pull request #575 from matrix-org/daniel/roomcleanup
Merge two of the room join codepaths There's at least one more to merge in. Side-effects: * Stop reporting None as displayname and avatar_url in some cases * Joining a room by alias populates guest-ness in join event * Remove unspec'd PUT version of /join/<room_id_or_alias> which has not been called on matrix.org according to logs * Stop recording access_token_id on /join/room_id - currently we don't record it on /join/room_alias; I can try to thread it through at some point.
Diffstat (limited to 'synapse/api')
-rw-r--r-- | synapse/api/errors.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/synapse/api/errors.py b/synapse/api/errors.py index b106fbed6d..0c7858f78d 100644 --- a/synapse/api/errors.py +++ b/synapse/api/errors.py @@ -84,6 +84,11 @@ class RegistrationError(SynapseError): pass +class BadIdentifierError(SynapseError): + """An error indicating an identifier couldn't be parsed.""" + pass + + class UnrecognizedRequestError(SynapseError): """An error indicating we don't understand the request you're trying to make""" def __init__(self, *args, **kwargs): |