-
Notifications
You must be signed in to change notification settings - Fork 19
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
[ENHANCEMENT] Add suggestions to 404 feature page #1214
Comments
Hello @jcscottiii . I have come up with a solution . Maybe we can show the list of suggested features if we get the response from the |
Hi @Jynx2004, I am trying to understand your proposed solution. Are you proposing a separate endpoint to search for similar names? Currently, the only way to search for similar named features would be to use /v1/features?q=BAD_ID. So that would give us the same list regardless if we show the list on the 404 page or present a button that redirects them to the homepage search with the same BAD_ID (which then would use /v1/features?q=BAD_ID). |
@jcscottiii if I am right, |
Background: GoogleChrome/chromium-dashboard#4811 (comment)
Idea:
Given I am a user going to a nonexistent feature page
features/${BAD_ID}
, upon reaching the 404 page (Maybe we should make a 404 page just for feature requests), I should see a list of suggested feature ids if they exist.Implementation:
/v1/features
API with the query parameter set toq=${BAD_ID}
. If it gets any results back, present the list as a suggested list of features.Other alternatives:
The text was updated successfully, but these errors were encountered: