mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-12-15 22:23:53 -05:00
Add support for TURN servers as per the TURN REST API (http://tools.ietf.org/html/draft-uberti-behave-turn-rest-00)
This commit is contained in:
parent
e9c88ae4f4
commit
14ed6799d7
4 changed files with 104 additions and 2 deletions
|
|
@ -15,7 +15,7 @@
|
|||
|
||||
|
||||
from . import (
|
||||
room, events, register, login, profile, presence, initial_sync, directory
|
||||
room, events, register, login, profile, presence, initial_sync, directory, voip
|
||||
)
|
||||
|
||||
|
||||
|
|
@ -42,3 +42,4 @@ class RestServletFactory(object):
|
|||
presence.register_servlets(hs, client_resource)
|
||||
initial_sync.register_servlets(hs, client_resource)
|
||||
directory.register_servlets(hs, client_resource)
|
||||
voip.register_servlets(hs, client_resource)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue