mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-10-08 04:18:26 -04:00
Fix typos
This commit is contained in:
parent
12ed4ee48e
commit
94ecd871a0
3 changed files with 22 additions and 12 deletions
|
@ -495,7 +495,7 @@ class TransportLayerClient(object):
|
|||
)
|
||||
|
||||
@log_function
|
||||
def get_group_rooms(self, destination, group_id, requester_user_id):
|
||||
def get_rooms_in_group(self, destination, group_id, requester_user_id):
|
||||
path = PREFIX + "/groups/%s/rooms" % (group_id,)
|
||||
|
||||
return self.client.get_json(
|
||||
|
@ -518,7 +518,7 @@ class TransportLayerClient(object):
|
|||
)
|
||||
|
||||
@log_function
|
||||
def get_group_users(self, destination, group_id, requester_user_id):
|
||||
def get_users_in_group(self, destination, group_id, requester_user_id):
|
||||
path = PREFIX + "/groups/%s/users" % (group_id,)
|
||||
|
||||
return self.client.get_json(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue