diff options
author | Richard van der Hoff <richard@matrix.org> | 2018-05-11 00:17:11 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2018-05-15 15:11:59 +0100 |
commit | 47815edcfae73c5b938f8354853a09c0b80ef27e (patch) | |
tree | a68e0f4ff14809f5a30b4446c3837aa1eb725957 /synapse/server.py | |
parent | Merge remote-tracking branch 'origin/master' into develop (diff) | |
download | synapse-47815edcfae73c5b938f8354853a09c0b80ef27e.tar.xz |
ConsentResource to gather policy consent from users
Hopefully there are enough comments and docs in this that it makes sense on its own.
Diffstat (limited to 'synapse/server.py')
-rw-r--r-- | synapse/server.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/server.py b/synapse/server.py index ebdea6b0c4..21cde5b6fc 100644 --- a/synapse/server.py +++ b/synapse/server.py @@ -97,6 +97,9 @@ class HomeServer(object): which must be implemented by the subclass. This code may call any of the required "get" methods on the instance to obtain the sub-dependencies that one requires. + + Attributes: + config (synapse.config.homeserver.HomeserverConfig): """ DEPENDENCIES = [ |