fix: point Studio home "Getting started" link to working Open edX docs#16
Merged
Merged
Conversation
The `home` help token returned by the Studio backend resolves to a retired readthedocs page. Override it in the help-urls thunk with the current Open edX educators quickstart URL until the backend help_tokens config is migrated. Co-authored-by: Cursor <cursoragent@cursor.com>
10kalden
approved these changes
Jun 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes the broken "Getting started with Studio" link in the Studio home page sidebar. It was pointing at a retired
edx.readthedocs.iopage and now points at the current Open edX educators quickstart.Problem
The sidebar link ("New to … Studio?" → "Getting started with … Studio") gets its URL from the
homehelp token, which is served by the Studio backend (/api/contentstore/v1/help_urls, built fromcms/envs/help_tokens.ini+HELP_TOKENS_BOOKS). On this deployment that token still resolves to a retired readthedocs URL, so the link 404s.Change
Override the
hometoken in the help-urls thunk after it's fetched, so the sidebar link resolves to the working docs page:https://docs.openedx.org/en/latest/educators/quickstarts/build_a_course.htmlsrc/help-urls/data/thunks.jshometoken is only consumed by the Studio home sidebar, so the override is fully contained.help_tokensconfig todocs.openedx.org; that's a broader, backend-repo change and is noted in the comment.