mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-02 01:56:02 -04:00
update_membership
declaration: now always returns an event id. (#7809)
This commit is contained in:
parent
8ca39bd2c3
commit
53ee214f2f
4 changed files with 8 additions and 9 deletions
|
@ -109,7 +109,7 @@ class RoomMemberHandler(object):
|
|||
txn_id: Optional[str],
|
||||
requester: Requester,
|
||||
content: JsonDict,
|
||||
) -> Tuple[Optional[str], int]:
|
||||
) -> Tuple[str, int]:
|
||||
"""
|
||||
Rejects an out-of-band invite we have received from a remote server
|
||||
|
||||
|
@ -268,7 +268,7 @@ class RoomMemberHandler(object):
|
|||
ratelimit: bool = True,
|
||||
content: Optional[dict] = None,
|
||||
require_consent: bool = True,
|
||||
) -> Tuple[Optional[str], int]:
|
||||
) -> Tuple[str, int]:
|
||||
key = (room_id,)
|
||||
|
||||
with (await self.member_linearizer.queue(key)):
|
||||
|
@ -299,7 +299,7 @@ class RoomMemberHandler(object):
|
|||
ratelimit: bool = True,
|
||||
content: Optional[dict] = None,
|
||||
require_consent: bool = True,
|
||||
) -> Tuple[Optional[str], int]:
|
||||
) -> Tuple[str, int]:
|
||||
content_specified = bool(content)
|
||||
if content is None:
|
||||
content = {}
|
||||
|
@ -1006,7 +1006,7 @@ class RoomMemberMasterHandler(RoomMemberHandler):
|
|||
txn_id: Optional[str],
|
||||
requester: Requester,
|
||||
content: JsonDict,
|
||||
) -> Tuple[Optional[str], int]:
|
||||
) -> Tuple[str, int]:
|
||||
"""
|
||||
Rejects an out-of-band invite received from a remote user
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue