mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Docstring
This commit is contained in:
parent
45cd2b0233
commit
87deec824a
@ -178,6 +178,11 @@ class Filter(object):
|
|||||||
self.filter_json = filter_json
|
self.filter_json = filter_json
|
||||||
|
|
||||||
def check(self, event):
|
def check(self, event):
|
||||||
|
"""Checks whether the filter matches the given event.
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
bool: True if the event matches
|
||||||
|
"""
|
||||||
literal_keys = {
|
literal_keys = {
|
||||||
"rooms": lambda v: event.room_id == v,
|
"rooms": lambda v: event.room_id == v,
|
||||||
"senders": lambda v: event.sender == v,
|
"senders": lambda v: event.sender == v,
|
||||||
|
Loading…
Reference in New Issue
Block a user