mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
s/roomid/room_id/
This commit is contained in:
parent
1e375468de
commit
1e2ac54351
@ -46,7 +46,7 @@ class SpamChecker(object):
|
||||
|
||||
return self.spam_checker.check_event_for_spam(event)
|
||||
|
||||
def user_may_invite(self, userid, roomid):
|
||||
def user_may_invite(self, userid, room_id):
|
||||
"""Checks if a given user may send an invite
|
||||
|
||||
If this method returns false, the invite will be rejected.
|
||||
@ -60,4 +60,4 @@ class SpamChecker(object):
|
||||
if self.spam_checker is None:
|
||||
return True
|
||||
|
||||
return self.spam_checker.user_may_invite(userid, roomid)
|
||||
return self.spam_checker.user_may_invite(userid, room_id)
|
||||
|
Loading…
Reference in New Issue
Block a user