Skip to content

fix: replace discord references with forum#408

Merged
sriramveeraghanta merged 5 commits intomasterfrom
fix-replace-discord-with-forum
Mar 17, 2026
Merged

fix: replace discord references with forum#408
sriramveeraghanta merged 5 commits intomasterfrom
fix-replace-discord-with-forum

Conversation

@sriramveeraghanta
Copy link
Member

@sriramveeraghanta sriramveeraghanta commented Mar 9, 2026

Summary by CodeRabbit

  • Documentation
    • Replaced Discord references and invite links with Plane Forum across contributing guidelines and support docs.
    • Updated site social link to point to the Plane Forum and refreshed its displayed icon.
    • Minor wording tweaks (e.g., workspace analogy) to remove outdated platform references and clarify guidance.

@vercel
Copy link

vercel bot commented Mar 9, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
docs Ready Ready Preview, Comment Mar 17, 2026 6:54pm

Request Review

@coderabbitai
Copy link

coderabbitai bot commented Mar 9, 2026

Caution

Review failed

The pull request is closed.

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 919e1832-733b-486e-85ae-3d50a8401eb9

📥 Commits

Reviewing files that changed from the base of the PR and between ce982b6 and aaa8641.

📒 Files selected for processing (2)
  • docs/.vitepress/config.ts
  • docs/core-concepts/workspaces/overview.md

📝 Walkthrough

Walkthrough

Replaced references to Discord with Plane Forum links/icons across documentation and site config; adjusted one analogy wording to use "workspace in Slack."

Changes

Cohort / File(s) Summary
Contribution & Support
CONTRIBUTING.md, docs/support/get-help.md
Replaced Discord invite and wording with Plane Forum URL (https://forum.plane.so) and changed phrasing from "Discord" / "Discord community" to "Plane Forum" / "community forum."
Site config
docs/.vitepress/config.ts
Replaced string-based "discord" social link with a custom inline SVG icon object and updated the link target to https://forum.plane.so.
Docs content
docs/core-concepts/workspaces/overview.md
Adjusted analogy text: changed "a server in Discord or an organization in Slack" to "a workspace in Slack."

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~8 minutes

Poem

🐰 From Discord fields we gently roam,
To Plane Forum's cozy home,
Links updated, wording neat,
Community hops on lighter feet,
A rabbit cheers for paths now clear!

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly and concisely summarizes the main change: replacing Discord references with a forum throughout the codebase.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
  • 📝 Generate docstrings (stacked PR)
  • 📝 Generate docstrings (commit on current branch)
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch fix-replace-discord-with-forum
📝 Coding Plan
  • Generate coding plan for human review comments

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (1)
docs/.vitepress/config.ts (1)

197-200: Add an explicit accessibility label to the custom social link.

VitePress supports custom SVG icons in socialLinks, and its docs recommend providing ariaLabel for accessibility; the example SVG also includes role="img" and a <title>. Adding ariaLabel: "Plane Forum" here would make the link’s accessible name explicit. (vitepress.dev)

Suggested tweak
     socialLinks: [
       { icon: "github", link: "https://github.com/makeplane/plane" },
-        { icon: { svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 9a2 2 0 0 1-2 2H6l-4 4V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2z"/><path d="M18 9h2a2 2 0 0 1 2 2v11l-4-4h-6a2 2 0 0 1-2-2v-1"/></svg>' }, link: "https://forum.plane.so" },
+      {
+        icon: {
+          svg: '<svg role="img" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><title>Plane Forum</title><path d="M14 9a2 2 0 0 1-2 2H6l-4 4V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2z"/><path d="M18 9h2a2 2 0 0 1 2 2v11l-4-4h-6a2 2 0 0 1-2-2v-1"/></svg>',
+        },
+        link: "https://forum.plane.so",
+        ariaLabel: "Plane Forum",
+      },
       { icon: "twitter", link: "https://twitter.com/planepowers" },
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/.vitepress/config.ts` around lines 197 - 200, The custom social link
inside the socialLinks array (the object with icon: { svg: '...'} and link:
"https://forum.plane.so") needs an explicit accessible name; add ariaLabel:
"Plane Forum" to that object and also include role="img" and a <title>Plane
Forum</title> inside the SVG string so screen readers get a proper description;
update the socialLinks entry accordingly to include ariaLabel and the modified
SVG.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@docs/core-concepts/workspaces/overview.md`:
- Line 10: Replace the phrase "an organization in Slack" with "a workspace in
Slack" in the sentence that begins "Picture it like this. A Workspace in Plane
is similar to an organization in Slack." so the analogy is accurate; update the
surrounding sentence to read something like "A Workspace in Plane is similar to
a workspace in Slack." and keep the rest of the paragraph unchanged to preserve
tone and examples.

---

Nitpick comments:
In `@docs/.vitepress/config.ts`:
- Around line 197-200: The custom social link inside the socialLinks array (the
object with icon: { svg: '...'} and link: "https://forum.plane.so") needs an
explicit accessible name; add ariaLabel: "Plane Forum" to that object and also
include role="img" and a <title>Plane Forum</title> inside the SVG string so
screen readers get a proper description; update the socialLinks entry
accordingly to include ariaLabel and the modified SVG.

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 2432b663-2007-41ff-8b10-bd500775fb2c

📥 Commits

Reviewing files that changed from the base of the PR and between 5d3ab37 and ce982b6.

📒 Files selected for processing (4)
  • CONTRIBUTING.md
  • docs/.vitepress/config.ts
  • docs/core-concepts/workspaces/overview.md
  • docs/support/get-help.md

@sriramveeraghanta sriramveeraghanta merged commit 4e8b5b2 into master Mar 17, 2026
4 of 5 checks passed
@sriramveeraghanta sriramveeraghanta deleted the fix-replace-discord-with-forum branch March 17, 2026 18:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants