mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-15 04:13:52 +01:00
Docstring
This commit is contained in:
parent
45cd2b0233
commit
87deec824a
1 changed files with 5 additions and 0 deletions
|
@ -178,6 +178,11 @@ class Filter(object):
|
|||
self.filter_json = filter_json
|
||||
|
||||
def check(self, event):
|
||||
"""Checks whether the filter matches the given event.
|
||||
|
||||
Returns:
|
||||
bool: True if the event matches
|
||||
"""
|
||||
literal_keys = {
|
||||
"rooms": lambda v: event.room_id == v,
|
||||
"senders": lambda v: event.sender == v,
|
||||
|
|
Loading…
Reference in a new issue