diff options
author | Amber Brown <hawkowl@atleastfornow.net> | 2019-06-04 15:54:27 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-04 15:54:27 +1000 |
commit | b2b90b7d34bf9afc437df6a2e58ab89cfd8ab91f (patch) | |
tree | c3536812c68c45a07669843f4830fbf83c77b668 /synapse/rest/client | |
parent | Enforce validity period on server_keys for fed requests. (#5321) (diff) | |
download | synapse-b2b90b7d34bf9afc437df6a2e58ab89cfd8ab91f.tar.xz |
Hawkowl/fix missing auth (#5328)
Diffstat (limited to 'synapse/rest/client')
-rw-r--r-- | synapse/rest/client/v1/voip.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/rest/client/v1/voip.py b/synapse/rest/client/v1/voip.py index 0975df84cf..6381049210 100644 --- a/synapse/rest/client/v1/voip.py +++ b/synapse/rest/client/v1/voip.py @@ -29,6 +29,7 @@ class VoipRestServlet(RestServlet): def __init__(self, hs): super(VoipRestServlet, self).__init__() self.hs = hs + self.auth = hs.get_auth() @defer.inlineCallbacks def on_GET(self, request): |