"findRecord" link on ember-data docs is dead
Steps to Reproduce:
- https://api.emberjs.com/ember-data/release/classes/Store/methods/queryRecord?anchor=queryRecord
- Scroll down to "queryRecord" documentation.
- In the sentence "This method makes a request for one record, where the id is not known beforehand (if the id is known, use findRecord instead)", click "findRecord".
Expected: You're taken to the "findRecord" documentation
Actual: You're taken to this URL which doesn't load: https://api.emberjs.com/ember-data/release/classes/Store/classes/Store/methods/findRecord?anchor=findRecord with the error message: "Cannot GET /ember-data/release/classes/Store/classes/Store/methods/findRecord"
Hello! @krashaune and I are pairing during the contributors workshop, and would like to work on this if someone could assign it to us, please. @jenweber ?
@broxsonl just assigned that to you, thx! Feel free to ping me on Discord (same handle) if you need a hand there
We've determined that there's actually at least half a dozen links--maybe more--that are broken due to incorrect pathing in their respective html-safe descriptions in the json artifact which builds the page. Will need to directly update the json to fix them.
Example for the issue this was created for:
[findRecord](../classes/Store/methods/findRecord?anchor=findRecord) is using a relative path, which is making the url "classes/Store/classes/Store/methods/findRecord?anchor=findRecord"
Means we likely need to update the path in the description in the json to [findRecord](../methods/findRecord?anchor=findRecord)