summary refs log tree commit diff
path: root/synapse/rest/client/v2_alpha/account.py
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2020-03-18 07:50:00 -0400
committerGitHub <noreply@github.com>2020-03-18 07:50:00 -0400
commit88b41986dbc54e8601ad4d889f4ebff952858b4f (patch)
treede3e5df88c1388266b34621994c04fba71dba099 /synapse/rest/client/v2_alpha/account.py
parentUpdate INSTALL.md updated CentOS8 install instructions (#6925) (diff)
downloadsynapse-88b41986dbc54e8601ad4d889f4ebff952858b4f.tar.xz
Add an option to the set password API to choose whether to logout other devices. (#7085)
Diffstat (limited to 'synapse/rest/client/v2_alpha/account.py')
-rw-r--r--synapse/rest/client/v2_alpha/account.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/synapse/rest/client/v2_alpha/account.py b/synapse/rest/client/v2_alpha/account.py
index dc837d6c75..631cc74cb4 100644
--- a/synapse/rest/client/v2_alpha/account.py
+++ b/synapse/rest/client/v2_alpha/account.py
@@ -265,8 +265,11 @@ class PasswordRestServlet(RestServlet):
 
         assert_params_in_dict(params, ["new_password"])
         new_password = params["new_password"]
+        logout_devices = params.get("logout_devices", True)
 
-        await self._set_password_handler.set_password(user_id, new_password, requester)
+        await self._set_password_handler.set_password(
+            user_id, new_password, logout_devices, requester
+        )
 
         return 200, {}