From bc128359ab0fe17d9eb86b90ef2d37f4f580f153 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Sat, 18 Jul 2020 17:19:13 -0700 Subject: [PATCH] chore: Remove Spectrum references (#1366) * fix: knowledgebase -> knowledge base * chore: Remove links and mentions to Spectrum community --- README.md | 3 +-- app/menus/AccountMenu.js | 4 ---- server/__snapshots__/mailer.test.js.snap | 2 +- server/emails/components/Footer.js | 5 +---- server/onboarding/❤️ Support.md | 4 ++-- shared/utils/routeHelpers.js | 12 ------------ 6 files changed, 5 insertions(+), 25 deletions(-) diff --git a/README.md b/README.md index 2e65a06c97..fad373ed4a 100644 --- a/README.md +++ b/README.md @@ -153,7 +153,7 @@ yarn test:app Outline is built and maintained by a small team – we'd love your help to fix bugs and add features! -However, before working on a pull request please let the core team know by creating or commenting in an issue on [GitHub](https://www.github.com/outline/outline/issues), and we'd also love to hear from you in our [Spectrum community](https://spectrum.chat/outline). This way we can ensure that an approach is agreed on before code is written and will hopefully help to get your contributions integrated faster! +However, before working on a pull request please let the core team know by creating or commenting in an issue on [GitHub](https://www.github.com/outline/outline/issues), and we'd also love to hear from you in the [Discussions](https://www.github.com/outline/outline/discussions). This way we can ensure that an approach is agreed on before code is written and will hopefully help to get your contributions integrated faster! If you’re looking for ways to get started, here's a list of ways to help us improve Outline: @@ -161,7 +161,6 @@ If you’re looking for ways to get started, here's a list of ways to help us im * Performance improvements, both on server and frontend * Developer happiness and documentation * Bugs and other issues listed on GitHub -* Helping others on Spectrum ## License diff --git a/app/menus/AccountMenu.js b/app/menus/AccountMenu.js index d9dce563fd..6c25350ff2 100644 --- a/app/menus/AccountMenu.js +++ b/app/menus/AccountMenu.js @@ -16,7 +16,6 @@ import { changelog, githubIssuesUrl, mailToUrl, - spectrumUrl, settings, } from "../../shared/utils/routeHelpers"; @@ -71,9 +70,6 @@ class AccountMenu extends React.Component { Changelog - - Community - Send us feedback diff --git a/server/__snapshots__/mailer.test.js.snap b/server/__snapshots__/mailer.test.js.snap index 37be51ef9b..b6741b2208 100644 --- a/server/__snapshots__/mailer.test.js.snap +++ b/server/__snapshots__/mailer.test.js.snap @@ -43,7 +43,7 @@ Object { Outline is a place for your team to build and share knowledge. -
 
\\"Outline\\"
 

Welcome to Outline!

Outline is a place for your team to build and share knowledge.

To get started, head to your dashboard and try creating a collection to help document your workflow, create playbooks or help with team onboarding.

You can also import existing Markdown documents by dragging and dropping them to your collections.

 

View my dashboard

 
OutlineTwitterSpectrum
+
 
\\"Outline\\"
 

Welcome to Outline!

Outline is a place for your team to build and share knowledge.

To get started, head to your dashboard and try creating a collection to help document your workflow, create playbooks or help with team onboarding.

You can also import existing Markdown documents by dragging and dropping them to your collections.

 

View my dashboard

 
OutlineTwitter
diff --git a/server/emails/components/Footer.js b/server/emails/components/Footer.js index f32d59e8b8..1e34b4f246 100644 --- a/server/emails/components/Footer.js +++ b/server/emails/components/Footer.js @@ -1,7 +1,7 @@ // @flow import * as React from "react"; import { Table, TBody, TR, TD } from "oy-vey"; -import { twitterUrl, spectrumUrl } from "../../../shared/utils/routeHelpers"; +import { twitterUrl } from "../../../shared/utils/routeHelpers"; import theme from "../../../shared/styles/theme"; type Props = { @@ -46,9 +46,6 @@ export default ({ unsubscribeUrl }: Props) => { Twitter - - Spectrum - {unsubscribeUrl && ( diff --git a/server/onboarding/❤️ Support.md b/server/onboarding/❤️ Support.md index 2b21962b90..b6870bb79b 100644 --- a/server/onboarding/❤️ Support.md +++ b/server/onboarding/❤️ Support.md @@ -2,8 +2,8 @@ We hate bugs as much as you and do everything possible to keep the application b ## GitHub -If you have a GitHub account then you can also submit issues directly to the development team on our [open issue tracker](https://github.com/outline/outline/issues). +If you have a GitHub account then you can also submit bugs directly to the development team on our public [issue tracker](https://github.com/outline/outline/issues). ## Ideas -We’d love to hear your ideas about how Outline can be improved and features you would like to see built. The best place to let the team know is through our [Spectrum community](https://spectrum.chat/outline). +We’d love to hear your ideas about how Outline can be improved and features you would like to see built. The best place to let the team know is through [GitHub discussions](https://github.com/outline/outline/discussions). diff --git a/shared/utils/routeHelpers.js b/shared/utils/routeHelpers.js index 8b3d81c863..ec25200b59 100644 --- a/shared/utils/routeHelpers.js +++ b/shared/utils/routeHelpers.js @@ -34,22 +34,10 @@ export function githubIssuesUrl(): string { return "https://www.github.com/outline/outline/issues"; } -export function slackAppStoreUrl(): string { - return "https://goabstract.slack.com/apps/A0W3UMKBQ-outline"; -} - -export function blogUrl(): string { - return "https://medium.com/getoutline"; -} - export function twitterUrl(): string { return "https://twitter.com/outlinewiki"; } -export function spectrumUrl(): string { - return "https://spectrum.chat/outline"; -} - export function mailToUrl(): string { return "mailto:hello@getoutline.com"; }