(self, *args)
| 34 | return self.get_search_queryset().filter_or(*args, **kwargs) |
| 35 | |
| 36 | def order_by(self, *args): |
| 37 | return self.get_search_queryset().order_by(*args) |
| 38 | |
| 39 | def highlight(self): |
| 40 | return self.get_search_queryset().highlight() |
nothing calls this directly
no test coverage detected