mirror of
https://github.com/flibusta-apps/book_library_server.git
synced 2025-12-06 07:05:36 +01:00
12 lines
254 B
Python
12 lines
254 B
Python
from app.models import Sequence
|
|
|
|
from app.services.common import TRGMSearchService
|
|
|
|
|
|
class SequenceTGRMSearchService(TRGMSearchService):
|
|
MODEL_CLASS = Sequence
|
|
FIELDS = [
|
|
Sequence.Meta.table.c.name
|
|
]
|
|
PREFETCH_RELATED = ["source"]
|