pass room id too

This commit is contained in:
David Baker 2017-10-03 17:13:14 +01:00
parent c2c188b699
commit 1e375468de
3 changed files with 6 additions and 4 deletions

View file

@ -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)