mirror of
https://github.com/matrix-org/synapse.git
synced 2026-05-04 19:56:29 +02:00
In the initial sync api, return the inviter for rooms in the 'invited' state
This commit is contained in:
parent
c6950b18cc
commit
3d1cae0e79
@ -264,6 +264,10 @@ class MessageHandler(BaseHandler):
|
||||
"room_id": event.room_id,
|
||||
"membership": event.membership,
|
||||
}
|
||||
|
||||
if event.membership == Membership.INVITE:
|
||||
d["inviter"] = event.user_id
|
||||
|
||||
ret.append(d)
|
||||
|
||||
if event.membership != Membership.JOIN:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user