mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Flatten devices into a dict, not a list
This commit is contained in:
parent
b8680b82c3
commit
edfcb83473
@ -42,16 +42,15 @@ class AdminHandler(BaseHandler):
|
||||
|
||||
ret = {
|
||||
"user_id": user.to_string(),
|
||||
"devices": [
|
||||
{
|
||||
"device_id": None,
|
||||
"devices": {
|
||||
"": {
|
||||
"sessions": [
|
||||
{
|
||||
"connections": connections,
|
||||
}
|
||||
]
|
||||
},
|
||||
],
|
||||
},
|
||||
}
|
||||
|
||||
defer.returnValue(ret)
|
||||
|
Loading…
Reference in New Issue
Block a user