mirror of
https://github.com/flibusta-apps/book_library_server.git
synced 2025-12-06 15:15:36 +01:00
14 lines
326 B
Python
14 lines
326 B
Python
from app.models import Author
|
|
|
|
from app.services.common import TRGMSearchService
|
|
|
|
|
|
class AuthorTGRMSearchService(TRGMSearchService):
|
|
MODEL = Author
|
|
FIELDS = [
|
|
Author.Meta.table.c.last_name,
|
|
Author.Meta.table.c.first_name,
|
|
Author.Meta.table.c.middle_name
|
|
]
|
|
PREFETCH_RELATED = ["source"]
|