Return a sequence containing the fields to be searched whenever somebody submits a search query.
(self, request)
| 1288 | return self.list_select_related |
| 1289 | |
| 1290 | def get_search_fields(self, request): |
| 1291 | """ |
| 1292 | Return a sequence containing the fields to be searched whenever |
| 1293 | somebody submits a search query. |
| 1294 | """ |
| 1295 | return self.search_fields |
| 1296 | |
| 1297 | def get_search_results(self, request, queryset, search_term): |
| 1298 | """ |
no outgoing calls
no test coverage detected