mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-18 17:24:19 +01:00
v2 /sync: Rename the keys of the 'rooms' object to match member states
joined->join invited->invite archived->leave
This commit is contained in:
parent
3c3fc6b268
commit
24ae0eee8e
1 changed files with 3 additions and 3 deletions
|
@ -148,9 +148,9 @@ class SyncRestServlet(RestServlet):
|
||||||
sync_result.presence, filter, time_now
|
sync_result.presence, filter, time_now
|
||||||
),
|
),
|
||||||
"rooms": {
|
"rooms": {
|
||||||
"joined": joined,
|
"join": joined,
|
||||||
"invited": invited,
|
"invite": invited,
|
||||||
"archived": archived,
|
"leave": archived,
|
||||||
},
|
},
|
||||||
"next_batch": sync_result.next_batch.to_string(),
|
"next_batch": sync_result.next_batch.to_string(),
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue