Merge branch 'logout-devices' into 'master'
Respect logout_devices param on password change See merge request famedly/conduit!15
This commit is contained in:
		
						commit
						9424ba0559
					
				
					 1 changed files with 10 additions and 10 deletions
				
			
		|  | @ -572,8 +572,7 @@ pub async fn change_password_route( | |||
| 
 | ||||
|     db.users.set_password(&sender_user, &body.new_password)?; | ||||
| 
 | ||||
|     // TODO: Read logout_devices field when it's available and respect that, currently not supported in Ruma
 | ||||
|     // See: https://github.com/ruma/ruma/issues/107
 | ||||
|     if body.logout_devices { | ||||
|         // Logout all devices except the current one
 | ||||
|         for id in db | ||||
|             .users | ||||
|  | @ -583,6 +582,7 @@ pub async fn change_password_route( | |||
|         { | ||||
|             db.users.remove_device(&sender_user, &id)?; | ||||
|         } | ||||
|     } | ||||
| 
 | ||||
|     db.flush().await?; | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue