Add null / not null verbs back to default boolean grid filter
This commit is contained in:
parent
f3f7b9f95b
commit
01edbf32d1
|
@ -334,7 +334,7 @@ class AlchemyBooleanFilter(AlchemyGridFilter):
|
|||
"""
|
||||
Boolean filter for SQLAlchemy.
|
||||
"""
|
||||
default_verbs = ['is_true', 'is_false', 'is_any']
|
||||
default_verbs = ['is_true', 'is_false', 'is_null', 'is_not_null', 'is_any']
|
||||
|
||||
def filter_is_true(self, query, value):
|
||||
"""
|
||||
|
|
Loading…
Reference in a new issue