Show the Developers/Companies switch to everyone#101
Closed
peetzweg wants to merge 1 commit into
Closed
Conversation
The company board shipped dark behind the SHOW_BOARD_TOGGLE flag, reachable only via a direct /?kind=org URL. It's ready to launch, so drop the flag and always render the switch.
peetzweg
added a commit
that referenced
this pull request
Jul 8, 2026
…unhide board toggle Three changes that together make the organization leaderboard a shippable, go-live feature: - Rebrand: user-facing copy, code identifiers (Company* → Org*, matching the codebase's existing `org` convention), and URLs (/company/* → /organizations/*) all say "Organizations" now — GitHub's own term. Old /company/<slug> URLs 301 to their new home so no link or search result breaks. The GitHub user-profile `company` field is left untouched (it's a different, GitHub-named thing). - Recent lookups now include organizations: the org build path records the lookup, queryRecent surfaces user+org entries, and the chip renders a square avatar plus the verified badge for orgs. - The Developers/Organizations board toggle is shown to everyone (drops the SHOW_BOARD_TOGGLE dark-launch flag; supersedes PR #101).
Owner
Author
|
Folded into #103 (the org leaderboard go-live PR) — the SHOW_BOARD_TOGGLE flag is removed there and the toggle ships to everyone. Closing in favor of that. |
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.
Re #84. Removes the
SHOW_BOARD_TOGGLEfeature flag so the Developers/Companies switch always renders on the leaderboard index.Why: The company board shipped dark — fully working but reachable only via a direct
/?kind=orgURL so it could be filled and sanity-checked in production. It's ready to launch.How: Drop the flag and render
<BoardKindToggle />unconditionally. Nothing else gated visibility, so this is the whole change.