diff options
author | David Baker <dbkr@matrix.org> | 2014-09-24 17:28:47 +0200 |
---|---|---|
committer | David Baker <dbkr@matrix.org> | 2014-09-24 17:28:47 +0200 |
commit | 7dc7c53029fccbccf291ca4c299fccfdeb8e19fb (patch) | |
tree | e72afc8690917c5f1b9b97bdcc8f5a20e178908b /synapse | |
parent | Hopefully implement turn in the web client (probably wrong for Firefox becaus... (diff) | |
download | synapse-7dc7c53029fccbccf291ca4c299fccfdeb8e19fb.tar.xz |
The REST API spec only alows for returning a single server so name the
endpoint appropriately.
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/rest/voip.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/voip.py b/synapse/rest/voip.py index a3a8842cb6..7260ff0e8e 100644 --- a/synapse/rest/voip.py +++ b/synapse/rest/voip.py @@ -24,7 +24,7 @@ import base64 class VoipRestServlet(RestServlet): - PATTERN = client_path_pattern("/voip/turnServers$") + PATTERN = client_path_pattern("/voip/turnServer$") @defer.inlineCallbacks def on_GET(self, request): |