Skip to content

[WEB-6420] chore: migrate community references from Discord to Forum#8657

Open
anmolsinghbhatia wants to merge 6 commits intopreviewfrom
chore/migrate-discord-to-forum
Open

[WEB-6420] chore: migrate community references from Discord to Forum#8657
anmolsinghbhatia wants to merge 6 commits intopreviewfrom
chore/migrate-discord-to-forum

Conversation

@anmolsinghbhatia
Copy link
Collaborator

@anmolsinghbhatia anmolsinghbhatia commented Feb 23, 2026

Summary

This PR completes the migration from Discord to Forum across the product and documentation.

What Changed

  • Replaced all user-facing Discord links and copy with Forum (https://forum.plane.so).
  • Updated help/community CTAs in web/admin/space surfaces.
  • Replaced Discord icon usage with MessageSquare from lucide-react.
  • Removed obsolete Discord icon component/export from Propel.
  • Updated i18n labels and Power-K help action key from Discord to Forum.
  • Updated email templates to reference Forum.

Type of Change

  • Code refactoring
  • Documentation update

Test Cases

  1. Open web sidebar Help menu: Forum item is present and opens https://forum.plane.so.
  2. Open admin help section: “Join our Forum” appears with MessageSquare icon and correct link.
  3. Open product updates footer: Forum link text + URL are correct.
  4. Open workspace invitation fallback screen: community CTA points to Forum.
  5. Trigger space error page: support copy references Forum and opens Forum URL.
  6. Open Power-K help actions: Forum action exists, label resolved via i18n, opens Forum URL.
  7. Review plans comparison support channel icons: MessageSquare is shown instead of Discord icon.
  8. Render invitation/notification/user email templates: all former Discord links now target Forum.

Summary by CodeRabbit

Release Notes

  • Documentation

    • Updated community support links in README and contributing guidelines.
  • Updates

    • Community support channel migrated from Discord to Forum across help sections, email communications, and user interface elements.
    • Updated support references in all supported languages.

@anmolsinghbhatia anmolsinghbhatia self-assigned this Feb 23, 2026
Copilot AI review requested due to automatic review settings February 23, 2026 14:52
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Feb 23, 2026

📝 Walkthrough

Walkthrough

This PR migrates all Discord community references to a Forum platform across configuration files, components, email templates, and translation files throughout the codebase. The Discord icon is removed and replaced with a generic message square icon. All UI links, email content, help sections, and translation keys are updated to reference the new forum domain.

Changes

Cohort / File(s) Summary
Configuration & Documentation
.github/ISSUE_TEMPLATE/config.yaml, CONTRIBUTING.md, README.md
Updated help text and community links from Discord to Forum with new forum.plane.so URL.
Admin & Sidebar Components
apps/admin/app/(all)/(dashboard)/sidebar-help-section.tsx, apps/web/core/components/workspace/sidebar/help-section/root.tsx
Replaced Discord help menu items with Forum items, updated icons from DiscordIcon to MessageSquare, and adjusted link destinations.
Email Templates
apps/api/templates/emails/invitations/project_invitation.html, apps/api/templates/emails/notifications/webhook-deactivate.html, apps/api/templates/emails/user/user_activation.html, apps/api/templates/emails/user/user_deactivation.html
Replaced Discord links and references with Forum links (https://forum.plane.so) in email content and footer sections.
Web Pages & Components
apps/space/app/error.tsx, apps/web/app/(all)/workspace-invitations/page.tsx, apps/web/core/components/global/product-updates/footer.tsx, apps/web/core/components/power-k/config/help-commands.ts
Updated Community links and help actions from Discord invite to Forum URL with MessageSquare icon.
Icon & Plan Constants
apps/web/core/constants/plans.tsx
Replaced custom DiscordIcon with MessageSquare from lucide-react; renamed internal icon component RiDiscordFill to ForumIcon.
Icon Module
packages/propel/src/icons/discord-icon.tsx, packages/propel/src/icons/index.ts
Removed Discord icon component file and its public re-export from the icon module index.
Translation Files
packages/i18n/src/locales/{cs,de,en,es,fr,id,it,ja,ko,pl,pt-BR,ro,ru,sk,tr-TR,ua,vi-VN,zh-CN,zh-TW}/translations.ts
Replaced all discord translation keys with forum keys across 18 locales; updated join_discord actions to join_forum in applicable locales (en, ru, ua).

Poem

🐰✨ Discord fades to forum bright,
Links now point to community light,
Icons change from round to square,
A forum home beyond compare!
Translation keys hop and dance,
Eighteen locales now enhance! 🌍

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~30 minutes

🚥 Pre-merge checks | ✅ 2 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 0.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (2 passed)
Check name Status Explanation
Description check ✅ Passed The PR description covers the required template sections with substantive content, including a clear summary, detailed 'What Changed' section, type of change checkboxes, and comprehensive test cases. All key changes are documented.
Title check ✅ Passed The title clearly and specifically summarizes the main change: migrating community references from Discord to Forum, which is the primary objective evident across all 30+ modified files.

✏️ 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
  • Post copyable unit tests in a comment
  • Commit unit tests in branch chore/migrate-discord-to-forum

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
Contributor

@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: 4

🧹 Nitpick comments (1)
apps/web/app/(all)/workspace-invitations/page.tsx (1)

115-119: LGTM — optional: consider aligning icon with the rest of the Forum migration.

The URL update at line 118 is correct. All other community CTAs migrated in this PR adopt MessageSquare (from lucide-react) as the canonical Forum icon. The Share2 icon here was pre-existing and is not a regression, but swapping it for MessageSquare would make this surface consistent with the other updated locations.

🎨 Proposed icon swap for consistency
-import { Boxes, Share2, Star, User2 } from "lucide-react";
+import { Boxes, MessageSquare, Star, User2 } from "lucide-react";
-              <EmptySpaceItem
-                Icon={Share2}
-                title="Join our community of active creators"
-                href="https://forum.plane.so"
-              />
+              <EmptySpaceItem
+                Icon={MessageSquare}
+                title="Join our community of active creators"
+                href="https://forum.plane.so"
+              />
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@apps/web/app/`(all)/workspace-invitations/page.tsx around lines 115 - 119,
Swap the icon used for the EmptySpaceItem component to match other forum CTAs by
replacing the current Icon prop value Share2 with MessageSquare (from
lucide-react); update the import if necessary so MessageSquare is imported and
then pass Icon={MessageSquare} to EmptySpaceItem to keep the visual language
consistent with other forum links.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@apps/web/core/components/workspace/sidebar/help-section/root.tsx`:
- Around line 96-98: The "Forum" label inside CustomMenu.MenuItem is hardcoded;
replace it with the i18n translation call (e.g., t('help.forum') or the
project's existing key) so it uses the same translation system as other items,
ensure the component imports/uses the same t function (from useTranslation or
the existing translation context used in this file), and add the new key/value
("help.forum": "Forum") to the relevant translation JSONs so translations appear
in all locales.

In `@packages/i18n/src/locales/ko/translations.ts`:
- Line 405: The "forum" translation key currently has the English value "Forum";
update the translation in packages/i18n/src/locales/ko/translations.ts by
replacing the value for the forum key with the Korean term "포럼" (unless this is
intentionally a brand name), ensuring the entry remains a valid string in the
translations export so the Korean UI shows the localized label.

In `@packages/i18n/src/locales/ua/translations.ts`:
- Line 418: Replace the English "Forum" value for the locale key forum with the
Ukrainian equivalent ("Форум" or "Форуму" as appropriate for context) and update
the corresponding help/action string(s) that still use English (search for other
occurrences such as the similar forum label around the file, e.g., the
occurrence near line 2862) so both the top-level label (forum) and its
help/action text are localized consistently to Ukrainian.

In `@README.md`:
- Line 148: Replace the blunt CTA text "Talk or write about Plane or any other
ecosystem integration and [let us know](https://forum.plane.so)!" with a more
polite, inviting phrasing; update the sentence (in README.md) to something like
"We’d love to hear about Plane or any other ecosystem integration — please share
your experience on our forum" or "Please share your Plane or ecosystem
integration on our forum." Ensure the new sentence preserves the existing forum
link and matches the doc's friendly tone.

---

Nitpick comments:
In `@apps/web/app/`(all)/workspace-invitations/page.tsx:
- Around line 115-119: Swap the icon used for the EmptySpaceItem component to
match other forum CTAs by replacing the current Icon prop value Share2 with
MessageSquare (from lucide-react); update the import if necessary so
MessageSquare is imported and then pass Icon={MessageSquare} to EmptySpaceItem
to keep the visual language consistent with other forum links.

ℹ️ Review info

Configuration used: defaults

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 9425c66 and 2ecdabd.

📒 Files selected for processing (35)
  • .github/ISSUE_TEMPLATE/config.yaml
  • CONTRIBUTING.md
  • README.md
  • apps/admin/app/(all)/(dashboard)/sidebar-help-section.tsx
  • apps/api/templates/emails/invitations/project_invitation.html
  • apps/api/templates/emails/notifications/webhook-deactivate.html
  • apps/api/templates/emails/user/user_activation.html
  • apps/api/templates/emails/user/user_deactivation.html
  • apps/space/app/error.tsx
  • apps/web/app/(all)/workspace-invitations/page.tsx
  • apps/web/core/components/global/product-updates/footer.tsx
  • apps/web/core/components/power-k/config/help-commands.ts
  • apps/web/core/components/workspace/sidebar/help-section/root.tsx
  • apps/web/core/constants/plans.tsx
  • packages/i18n/src/locales/cs/translations.ts
  • packages/i18n/src/locales/de/translations.ts
  • packages/i18n/src/locales/en/translations.ts
  • packages/i18n/src/locales/es/translations.ts
  • packages/i18n/src/locales/fr/translations.ts
  • packages/i18n/src/locales/id/translations.ts
  • packages/i18n/src/locales/it/translations.ts
  • packages/i18n/src/locales/ja/translations.ts
  • packages/i18n/src/locales/ko/translations.ts
  • packages/i18n/src/locales/pl/translations.ts
  • packages/i18n/src/locales/pt-BR/translations.ts
  • packages/i18n/src/locales/ro/translations.ts
  • packages/i18n/src/locales/ru/translations.ts
  • packages/i18n/src/locales/sk/translations.ts
  • packages/i18n/src/locales/tr-TR/translations.ts
  • packages/i18n/src/locales/ua/translations.ts
  • packages/i18n/src/locales/vi-VN/translations.ts
  • packages/i18n/src/locales/zh-CN/translations.ts
  • packages/i18n/src/locales/zh-TW/translations.ts
  • packages/propel/src/icons/discord-icon.tsx
  • packages/propel/src/icons/index.ts
💤 Files with no reviewable changes (2)
  • packages/propel/src/icons/index.ts
  • packages/propel/src/icons/discord-icon.tsx

Comment on lines +96 to +98
<CustomMenu.MenuItem onClick={() => window.open("https://forum.plane.so", "_blank", "noopener,noreferrer")}>
<div className="flex items-center gap-x-2 rounded-sm text-11">
<span className="text-11">Discord</span>
<span className="text-11">Forum</span>
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor

Localize the Forum label via i18n.

Other menu items use t(...); this hardcoded label won’t translate.

🔧 Suggested fix
-            <span className="text-11">Forum</span>
+            <span className="text-11">{t("forum")}</span>
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<CustomMenu.MenuItem onClick={() => window.open("https://forum.plane.so", "_blank", "noopener,noreferrer")}>
<div className="flex items-center gap-x-2 rounded-sm text-11">
<span className="text-11">Discord</span>
<span className="text-11">Forum</span>
<CustomMenu.MenuItem onClick={() => window.open("https://forum.plane.so", "_blank", "noopener,noreferrer")}>
<div className="flex items-center gap-x-2 rounded-sm text-11">
<span className="text-11">{t("forum")}</span>
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@apps/web/core/components/workspace/sidebar/help-section/root.tsx` around
lines 96 - 98, The "Forum" label inside CustomMenu.MenuItem is hardcoded;
replace it with the i18n translation call (e.g., t('help.forum') or the
project's existing key) so it uses the same translation system as other items,
ensure the component imports/uses the same t function (from useTranslation or
the existing translation context used in this file), and add the new key/value
("help.forum": "Forum") to the relevant translation JSONs so translations appear
in all locales.

full_changelog: "전체 변경 로그",
support: "지원",
discord: "디스코드",
forum: "Forum",
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor

Consider localizing “Forum” for Korean UI.
If this label isn’t meant to stay in English as a brand term, “포럼” would match the rest of the locale.

💡 Suggested tweak
-  forum: "Forum",
+  forum: "포럼",
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
forum: "Forum",
forum: "포럼",
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@packages/i18n/src/locales/ko/translations.ts` at line 405, The "forum"
translation key currently has the English value "Forum"; update the translation
in packages/i18n/src/locales/ko/translations.ts by replacing the value for the
forum key with the Korean term "포럼" (unless this is intentionally a brand name),
ensuring the entry remains a valid string in the translations export so the
Korean UI shows the localized label.

full_changelog: "Повний журнал змін",
support: "Підтримка",
discord: "Discord",
forum: "Forum",
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor

Localize “Forum” in Ukrainian strings.
Both the top-level label and help action still show English; “Форум/Форуму” would read more naturally.

💡 Suggested tweak
-  forum: "Forum",
+  forum: "Форум",
...
-      join_forum: "Приєднатися до Forum",
+      join_forum: "Приєднатися до Форуму",

Also applies to: 2862-2862

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@packages/i18n/src/locales/ua/translations.ts` at line 418, Replace the
English "Forum" value for the locale key forum with the Ukrainian equivalent
("Форум" or "Форуму" as appropriate for context) and update the corresponding
help/action string(s) that still use English (search for other occurrences such
as the similar forum label around the file, e.g., the occurrence near line 2862)
so both the top-level label (forum) and its help/action text are localized
consistently to Ukrainian.

- Report [bugs](https://github.com/makeplane/plane/issues/new?assignees=srinivaspendem%2Cpushya22&labels=%F0%9F%90%9Bbug&projects=&template=--bug-report.yaml&title=%5Bbug%5D%3A+) or submit [feature requests](https://github.com/makeplane/plane/issues/new?assignees=srinivaspendem%2Cpushya22&labels=%E2%9C%A8feature&projects=&template=--feature-request.yaml&title=%5Bfeature%5D%3A+).
- Review the [documentation](https://docs.plane.so/) and submit [pull requests](https://github.com/makeplane/docs) to improve it—whether it's fixing typos or adding new content.
- Talk or write about Plane or any other ecosystem integration and [let us know](https://discord.com/invite/A92xrEGCge)!
- Talk or write about Plane or any other ecosystem integration and [let us know](https://forum.plane.so)!
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor

Consider a more polite CTA.
A small tone tweak keeps the sentence aligned with the rest of the doc.

💡 Suggested tweak
-- Talk or write about Plane or any other ecosystem integration and [let us know](https://forum.plane.so)!
+- Talk or write about Plane or any other ecosystem integration and [please let us know](https://forum.plane.so)!
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
- Talk or write about Plane or any other ecosystem integration and [let us know](https://forum.plane.so)!
- Talk or write about Plane or any other ecosystem integration and [please let us know](https://forum.plane.so)!
🧰 Tools
🪛 LanguageTool

[style] ~148-~148: Consider using polite language here.
Context: ...or any other ecosystem integration and let us know! - Show your s...

(INSERT_PLEASE)

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@README.md` at line 148, Replace the blunt CTA text "Talk or write about Plane
or any other ecosystem integration and [let us know](https://forum.plane.so)!"
with a more polite, inviting phrasing; update the sentence (in README.md) to
something like "We’d love to hear about Plane or any other ecosystem integration
— please share your experience on our forum" or "Please share your Plane or
ecosystem integration on our forum." Ensure the new sentence preserves the
existing forum link and matches the doc's friendly tone.

Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

Migrates user-facing community/help references from Discord to the Plane Forum across the web/admin/space UIs, i18n strings, docs, and email templates, and removes the now-obsolete Discord icon from Propel.

Changes:

  • Replace Discord links/copy with Forum (https://forum.plane.so) across product surfaces and documentation.
  • Swap Discord icon usage to lucide-react’s MessageSquare and delete the Propel DiscordIcon.
  • Update i18n keys/labels and Power-K help action from join_discordjoin_forum.

Reviewed changes

Copilot reviewed 35 out of 35 changed files in this pull request and generated 4 comments.

Show a summary per file
File Description
packages/propel/src/icons/index.ts Stops exporting the removed Discord icon.
packages/propel/src/icons/discord-icon.tsx Deletes obsolete Discord SVG icon component.
packages/i18n/src/locales/en/translations.ts Renames “discord” label key to “forum”; updates Power-K help action label.
packages/i18n/src/locales/de/translations.ts Renames “discord” label key to “forum”.
packages/i18n/src/locales/es/translations.ts Renames “discord” label key to “forum”.
packages/i18n/src/locales/fr/translations.ts Renames “discord” label key to “forum”.
packages/i18n/src/locales/it/translations.ts Renames “discord” label key to “forum”.
packages/i18n/src/locales/ja/translations.ts Renames “discord” label key to “forum”.
packages/i18n/src/locales/ko/translations.ts Renames “discord” label key to “forum”.
packages/i18n/src/locales/id/translations.ts Renames “discord” label key to “forum”.
packages/i18n/src/locales/pl/translations.ts Renames “discord” label key to “forum”.
packages/i18n/src/locales/pt-BR/translations.ts Renames “discord” label key to “forum”.
packages/i18n/src/locales/ro/translations.ts Renames “discord” label key to “forum”.
packages/i18n/src/locales/ru/translations.ts Renames “discord” label key to “forum”; updates Power-K help action label.
packages/i18n/src/locales/sk/translations.ts Renames “discord” label key to “forum”.
packages/i18n/src/locales/tr-TR/translations.ts Renames “discord” label key to “forum”.
packages/i18n/src/locales/ua/translations.ts Renames “discord” label key to “forum”; updates Power-K help action label.
packages/i18n/src/locales/vi-VN/translations.ts Renames “discord” label key to “forum”.
packages/i18n/src/locales/zh-CN/translations.ts Renames “discord” label key to “forum”.
packages/i18n/src/locales/zh-TW/translations.ts Renames “discord” label key to “forum”.
apps/web/core/constants/plans.tsx Replaces Discord icon with Forum icon in plan comparison UI.
apps/web/core/components/workspace/sidebar/help-section/root.tsx Updates help menu CTA/link from Discord to Forum.
apps/web/core/components/power-k/config/help-commands.ts Renames Power-K help action and updates target URL/icon to Forum.
apps/web/core/components/global/product-updates/footer.tsx Updates product updates footer community link to Forum.
apps/web/app/(all)/workspace-invitations/page.tsx Updates community CTA link to Forum.
apps/space/app/error.tsx Updates error page support link from Discord to Forum.
apps/api/templates/emails/user/user_deactivation.html Updates email support link/title to Forum.
apps/api/templates/emails/user/user_activation.html Updates email support link/title to Forum.
apps/api/templates/emails/notifications/webhook-deactivate.html Updates email “message” link to Forum.
apps/api/templates/emails/invitations/project_invitation.html Updates invitation email references from Discord to Forum.
apps/admin/app/(all)/(dashboard)/sidebar-help-section.tsx Updates admin help link/icon from Discord to Forum.
README.md Replaces Discord community references with Forum.
CONTRIBUTING.md Replaces Discord help reference with Forum.
.github/ISSUE_TEMPLATE/config.yaml Updates issue template support copy to reference Forum.

function RiDiscordFill({ className }: { className?: string }) {
return <DiscordIcon className={cn(className, "size-5 text-secondary")} />;
function ForumIcon({ className }: { className?: string }) {
return <MessageSquare className={cn(className, "size-5 text-secondary")} />;
Copy link

Copilot AI Feb 23, 2026

Choose a reason for hiding this comment

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

ForumIcon always ends up with size-5 because cn(className, "size-5 ...") appends the default size after the caller-provided size (e.g. size-4), overriding it. Swap the order (or conditionally apply the default size) so the caller can control the rendered size.

Suggested change
return <MessageSquare className={cn(className, "size-5 text-secondary")} />;
return <MessageSquare className={cn("size-5 text-secondary", className)} />;

Copilot uses AI. Check for mistakes.
<CustomMenu.MenuItem onClick={() => window.open("https://forum.plane.so", "_blank", "noopener,noreferrer")}>
<div className="flex items-center gap-x-2 rounded-sm text-11">
<span className="text-11">Discord</span>
<span className="text-11">Forum</span>
Copy link

Copilot AI Feb 23, 2026

Choose a reason for hiding this comment

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

This menu item label is hardcoded as "Forum" while the rest of the help menu uses t(...). Since you added forum to i18n, consider using t("forum") here for consistency and localization.

Suggested change
<span className="text-11">Forum</span>
<span className="text-11">{t("forum")}</span>

Copilot uses AI. Check for mistakes.
rel="noreferrer"
>
Discord
Forum
Copy link

Copilot AI Feb 23, 2026

Choose a reason for hiding this comment

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

The footer renders "Forum" as a hardcoded string while the other items use t(...). Since a forum translation key now exists, use t("forum") to keep this footer localizable and consistent.

Suggested change
Forum
{t("forum")}

Copilot uses AI. Check for mistakes.
@@ -1,6 +1,6 @@
contact_links:
- name: Help and support
Copy link

Copilot AI Feb 23, 2026

Choose a reason for hiding this comment

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

GitHub issue template contact_links entries require a url. The "Help and support" link still has no url, so it won't show as a clickable contact link. Add a url (e.g. https://forum.plane.so or GitHub Discussions) or split into two contact links if you want to point to both.

Suggested change
- name: Help and support
- name: Help and support
url: https://forum.plane.so

Copilot uses AI. Check for mistakes.
@anmolsinghbhatia anmolsinghbhatia changed the title chore: migrate community references from Discord to Forum [WEB-6420] chore: migrate community references from Discord to Forum Feb 24, 2026
@makeplane
Copy link

makeplane bot commented Feb 24, 2026

Linked to Plane Work Item(s)

This comment was auto-generated by Plane

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.

3 participants