mirror of
https://github.com/flibusta-apps/book_library_server.git
synced 2025-12-06 15:15:36 +01:00
11 lines
253 B
Python
11 lines
253 B
Python
from app.models import Genre
|
|
from app.services.common import MeiliSearchService
|
|
|
|
|
|
class GenreMeiliSearchService(MeiliSearchService):
|
|
MODEL_CLASS = Genre
|
|
PREFETCH_RELATED = ["source"]
|
|
|
|
MS_INDEX_NAME = "genres"
|
|
MS_INDEX_LANG_KEY = "langs"
|