(self)
| 37 | return self.get_search_queryset().order_by(*args) |
| 38 | |
| 39 | def highlight(self): |
| 40 | return self.get_search_queryset().highlight() |
| 41 | |
| 42 | def boost(self, term, boost): |
| 43 | return self.get_search_queryset().boost(term, boost) |
nothing calls this directly
no test coverage detected