This commit is contained in:
2021-11-20 22:41:26 +03:00
parent 77540819bd
commit e504fc4cc8
3 changed files with 9 additions and 5 deletions

View File

@@ -14,6 +14,9 @@ class BookTGRMSearchService(TRGMSearchService):
BookDB.Meta.table.c.title
]
PREFETCH_RELATED = ["source"]
FILTERS = [
BookDB.Meta.table.c.is_deleted == False,
]
class BookCreator: