mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-11 22:40:03 -04:00
Merge rest servlets into the client json resource object
This commit is contained in:
parent
22f00a09dd
commit
7256def8e4
5 changed files with 18 additions and 28 deletions
|
@ -19,22 +19,18 @@ from . import (
|
|||
voip, admin,
|
||||
)
|
||||
|
||||
from synapse.http.server import JsonResource
|
||||
|
||||
class RestServletFactory(object):
|
||||
|
||||
""" A factory for creating REST servlets.
|
||||
|
||||
These REST servlets represent the entire client-server REST API. Generally
|
||||
speaking, they serve as wrappers around events and the handlers that
|
||||
process them.
|
||||
|
||||
See synapse.events for information on synapse events.
|
||||
"""
|
||||
class ClientV1RestResource(JsonResource):
|
||||
"""A resource for version 1 of the matrix client API."""
|
||||
|
||||
def __init__(self, hs):
|
||||
client_resource = hs.get_resource_for_client()
|
||||
JsonResource.__init__(self)
|
||||
self.register_servlets(self, hs)
|
||||
|
||||
# TODO(erikj): There *must* be a better way of doing this.
|
||||
@staticmethod
|
||||
def register_servlets(client_resource, hs):
|
||||
room.register_servlets(hs, client_resource)
|
||||
events.register_servlets(hs, client_resource)
|
||||
register.register_servlets(hs, client_resource)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue