diff options
author | Neil Johnson <neil@matrix.org> | 2019-01-29 18:04:56 +0000 |
---|---|---|
committer | Neil Johnson <neil@matrix.org> | 2019-01-29 18:04:56 +0000 |
commit | e4bef9d470aa99cbb06b0a19fcafc5bd32008207 (patch) | |
tree | 5351f700240c376c0fbb9caaadbc6ffefd645e74 /synapse/rest/client | |
parent | update to reflect broadening scope (diff) | |
download | synapse-e4bef9d470aa99cbb06b0a19fcafc5bd32008207.tar.xz |
rework format of change password capability
Diffstat (limited to 'synapse/rest/client')
-rw-r--r-- | synapse/rest/client/v2_alpha/capabilities.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/rest/client/v2_alpha/capabilities.py b/synapse/rest/client/v2_alpha/capabilities.py index 08df941b5f..756c2dbdec 100644 --- a/synapse/rest/client/v2_alpha/capabilities.py +++ b/synapse/rest/client/v2_alpha/capabilities.py @@ -55,7 +55,9 @@ class CapabilitiesRestServlet(RestServlet): "state-v2-test": "unstable", } }, - "m.change_password": change_password, + "m.change_password": { + "enabled": change_password, + }, } }) ) |