mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-11 22:30:03 -04:00
pass room id too
This commit is contained in:
parent
c2c188b699
commit
1e375468de
3 changed files with 6 additions and 4 deletions
|
@ -46,7 +46,7 @@ class SpamChecker(object):
|
|||
|
||||
return self.spam_checker.check_event_for_spam(event)
|
||||
|
||||
def user_may_invite(self, userid):
|
||||
def user_may_invite(self, userid, roomid):
|
||||
"""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)
|
||||
return self.spam_checker.user_may_invite(userid, roomid)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue