Skip to content

Commit

Permalink
add generate_dsl empty method in base search-filter, re #11477
Browse files Browse the repository at this point in the history
  • Loading branch information
whatisgalen committed Sep 20, 2024
1 parent f85abec commit 42ef6d0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions arches/app/search/components/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ def __init__(self, request=None, user=None, componentname=None):
self.user = user
self.componentname = componentname

def generate_dsl(self, **kwargs):
"""
used to generate ES query dsl
"""

pass

def append_dsl(self, search_query_object, **kwargs):
"""
used to append ES query dsl to the search request
Expand Down

0 comments on commit 42ef6d0

Please sign in to comment.