Fix outdated User Guides + GitHub Issues links in registration email (#1236)#240
Open
riverma wants to merge 1 commit into
Open
Fix outdated User Guides + GitHub Issues links in registration email (#1236)#240riverma wants to merge 1 commit into
riverma wants to merge 1 commit into
Conversation
…(#1236) The welcome-to-suspended-user email rendered two stale URLs: - user_guides pointed at https://<env>.maap-project.org/user-guides/, a WordPress path that's been superseded by docs.maap-project.org. Point it at the canonical /en/latest/getting_started.html instead. This is no longer environment-suffixed since the docs site is a single source. - github issues pointed at MAAP-Project/ZenHub, which is no longer the user-facing tracker. Point it at MAAP-Project/Community, matching the triage flow documented in our internal repo guide. Closes #1236.
|
wildintellect
approved these changes
Jun 9, 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.



The account emails render their URLs from
get_environment_info()inemail_util.py, and two were stale: User Guides pointed at the old<env>.maap-project.org/user-guides/WordPress path, and GitHub issues pointed at the retiredZenHubrepo.Pointed them at
docs.maap-project.org/en/latest/getting_started.htmlandMAAP-Project/Community/issues. Since the URLs are centralized, this fixes all six templates that use these placeholders — no template edits needed. Verified both URLs return 200 and grep finds no remaininguser-guides/ZenHubstrings.Closes MAAP-Project/Community#1236.