Skip to content

Commit

Permalink
re-arrange pos args in base filter methods, re #10804
Browse files Browse the repository at this point in the history
  • Loading branch information
whatisgalen committed Apr 19, 2024
1 parent dfa1372 commit 55361d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arches/app/search/components/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ def view_data(self):

pass

def execute_query(self, search_results_object, request, response_object):
def execute_query(self, search_results_object, response_object, request):
"""
code responsible for execution of the search query and initial mutation of response object
"""
pass

def post_search_hook(self, search_results_object, results, permitted_nodegroups):
def post_search_hook(self, search_results_object, results, permitted_nodegroups, request):
"""
code to run after the search results have been retrieved
Expand Down

0 comments on commit 55361d3

Please sign in to comment.