mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04: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…
Reference in New Issue
Block a user