mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-07-21 10:08:47 -04:00
Add the topic and avatar to the room details admin API (#8305)
This commit is contained in:
parent
6605470bfb
commit
b82d68c0bd
4 changed files with 9 additions and 1 deletions
|
@ -104,7 +104,8 @@ class RoomWorkerStore(SQLBaseStore):
|
|||
curr.local_users_in_room AS joined_local_members, rooms.room_version AS version,
|
||||
rooms.creator, state.encryption, state.is_federatable AS federatable,
|
||||
rooms.is_public AS public, state.join_rules, state.guest_access,
|
||||
state.history_visibility, curr.current_state_events AS state_events
|
||||
state.history_visibility, curr.current_state_events AS state_events,
|
||||
state.avatar, state.topic
|
||||
FROM rooms
|
||||
LEFT JOIN room_stats_state state USING (room_id)
|
||||
LEFT JOIN room_stats_current curr USING (room_id)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue