Fill in the TODO about what how to mark access via spaces for the summary API.
This commit is contained in:
parent
35ce0b8f91
commit
4051810241
1 changed files with 35 additions and 1 deletions
|
@ -83,7 +83,41 @@ rooms in that space and should return the relevant summaries, along with enough
|
|||
information that the calling server can then do some filtering, thus an
|
||||
additional field is added to the server-server response of the spaces summary:
|
||||
|
||||
*TODO*
|
||||
* `allowed_spaces`: A list of space IDs which give access to this room.
|
||||
|
||||
This would modify the example response given to:
|
||||
|
||||
```jsonc
|
||||
{
|
||||
"rooms": [
|
||||
{
|
||||
"room_id": "!ol19s:bleecker.street",
|
||||
"avatar_url": "mxc://bleecker.street/CHEDDARandBRIE",
|
||||
"guest_can_join": false,
|
||||
"name": "CHEESE",
|
||||
"num_joined_members": 37,
|
||||
"topic": "Tasty tasty cheese",
|
||||
"world_readable": true,
|
||||
"room_type": "m.space",
|
||||
"allowed_spaces": ["!mods:example.org", "!users:example.org"]
|
||||
},
|
||||
{ ... }
|
||||
],
|
||||
"events": [
|
||||
{
|
||||
"type": "m.space.child",
|
||||
"state_key": "!efgh:example.com",
|
||||
"content": {
|
||||
"via": ["example.com"],
|
||||
"suggested": true
|
||||
},
|
||||
"room_id": "!ol19s:bleecker.street",
|
||||
"sender": "@alice:bleecker.street"
|
||||
},
|
||||
{ ... }
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
Consider that Alice and Bob share a server; Alice is a member of a space, but Bob
|
||||
is not. The remote server will not know whether the request is on behalf of Alice
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue