Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add family filter to completions #8056

Closed
drew2a opened this issue Jun 5, 2024 · 1 comment
Closed

Add family filter to completions #8056

drew2a opened this issue Jun 5, 2024 · 1 comment

Comments

@drew2a
Copy link
Contributor

drew2a commented Jun 5, 2024

This issue was created based on the comment from:

async def completions(self, request):
args = request.query
if 'q' not in args:
return RESTResponse({"error": "query parameter missing"}, status=HTTP_BAD_REQUEST)
keywords = args['q'].strip().lower()
# TODO: add XXX filtering for completion terms
results = self.mds.get_auto_complete_terms(keywords, max_terms=5)
return RESTResponse({"completions": results})

@qstokkink cited from #1722:

Our XXX filtering is now only half-working.

@drew2a drew2a changed the title Add family filter to comletions Add family filter to completions Jun 5, 2024
@qstokkink
Copy link
Contributor

The family filter has now been removed and this issue is no longer relevant..

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

No branches or pull requests

2 participants