(self)
| 255 | return query_set |
| 256 | |
| 257 | def list(self): |
| 258 | query_set = self.get_query_set() |
| 259 | return native_search(query_set, select_string=get_file_content( |
| 260 | os.path.join(PROJECT_DIR, "apps", "knowledge", 'sql', 'list_problem.sql'))) |
| 261 | |
| 262 | def page(self, current_page, page_size): |
| 263 | query_set = self.get_query_set() |
nothing calls this directly
no test coverage detected