diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2018-05-16 07:19:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-16 07:19:18 +0100 |
commit | 8030a825c8ea375652a856929d29d7ae28096cc1 (patch) | |
tree | fd1a3c6d59b793fb5ceca6d08187e12753bcaac1 /docs/privacy_policy_templates/README.md | |
parent | Merge pull request #3201 from matrix-org/dbkr/leave_rooms_on_deactivate (diff) | |
parent | ConsentResource to gather policy consent from users (diff) | |
download | synapse-8030a825c8ea375652a856929d29d7ae28096cc1.tar.xz |
Merge pull request #3213 from matrix-org/rav/consent_handler
ConsentResource to gather policy consent from users
Diffstat (limited to 'docs/privacy_policy_templates/README.md')
-rw-r--r-- | docs/privacy_policy_templates/README.md | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/docs/privacy_policy_templates/README.md b/docs/privacy_policy_templates/README.md new file mode 100644 index 0000000000..8e91c516b3 --- /dev/null +++ b/docs/privacy_policy_templates/README.md @@ -0,0 +1,23 @@ +If enabling the 'consent' resource in synapse, you will need some templates +for the HTML to be served to the user. This directory contains very simple +examples of the sort of thing that can be done. + +You'll need to add this sort of thing to your homeserver.yaml: + +``` +form_secret: <unique but arbitrary secret> + +user_consent: + template_dir: docs/privacy_policy_templates + default_version: 1.0 +``` + +You should then be able to enable the `consent` resource under a `listener` +entry. For example: + +``` +listeners: + - port: 8008 + resources: + - names: [client, consent] +``` |