diff options
| author | Eric Cheng <[email protected]> | 2022-01-28 02:30:20 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-01-28 08:30:20 +0100 |
| commit | 32b483920450a5c1a084e83723f1c433db8ff34f (patch) | |
| tree | 4cd7a0552399b08f19f58ac6c75380467e1745dc | |
| parent | 4ca61ca5b73c3cd4a0ba4094aabd492e2b7f74bf (diff) | |
| download | faker-32b483920450a5c1a084e83723f1c433db8ff34f.tar.xz faker-32b483920450a5c1a084e83723f1c433db8ff34f.zip | |
feat: add chat.fakerjs.dev subdomain redirection to discord (#306)
Co-authored-by: ST-DDT <[email protected]>
| -rw-r--r-- | .github/ISSUE_TEMPLATE/config.yml | 2 | ||||
| -rw-r--r-- | CODE_OF_CONDUCT.md | 2 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | docs/guide/index.md | 2 | ||||
| -rw-r--r-- | docs/update.md | 2 | ||||
| -rw-r--r-- | netlify.toml | 5 |
6 files changed, 10 insertions, 5 deletions
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 313e0995..6af83956 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,7 +1,7 @@ blank_issues_enabled: false contact_links: - name: Discord Chat - url: discord.gg/4qDjAmDj4P + url: https://chat.fakerjs.dev about: Ask questions and discuss with other users in real time. - name: Questions & Discussions url: https://github.com/faker-js/faker.js/discussions diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 0c25086b..4634d41e 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -35,7 +35,7 @@ This Code of Conduct applies both within project spaces and in public spaces whe ## Enforcement -Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by [contacting a Moderator or Maintainer via Discord](https://discord.com/invite/4qDjAmDj4P). All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by [contacting a Moderator or Maintainer via Discord](https://chat.fakerjs.dev). All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. @@ -3,7 +3,7 @@ <h1>Faker</h1> <p>Generate massive amounts of fake (but realistic) data for testing and development.</p> - [](https://discord.com/invite/4qDjAmDj4P) + [](https://chat.fakerjs.dev) [](https://github.com/faker-js/faker/actions/workflows/ci.yml) [](https://www.npmjs.com/package/@faker-js/faker) [](https://www.npmjs.com/package/@faker-js/faker) diff --git a/docs/guide/index.md b/docs/guide/index.md index d377b20d..def785f2 100644 --- a/docs/guide/index.md +++ b/docs/guide/index.md @@ -87,4 +87,4 @@ It is highly recommended to use version tags when importing libraries in Deno, e ## Community -If you have questions or need help, reach out to the community via [Discord](https://discord.com/invite/4qDjAmDj4P) and [GitHub Discussions](https://github.com/faker-js/faker/discussions). +If you have questions or need help, reach out to the community via [Discord](https://chat.fakerjs.dev) and [GitHub Discussions](https://github.com/faker-js/faker/discussions). diff --git a/docs/update.md b/docs/update.md index 2f11caa3..603879c0 100644 --- a/docs/update.md +++ b/docs/update.md @@ -30,7 +30,7 @@ We're referring to it as the official library in the immediate term in order to ## (someone) is also working on a Faker library -Please send them to our [Discord](https://discord.gg/k4bPM5dzqC) and we can share ideas and collaborate. +Please send them to our [Discord](https://chat.fakerjs.dev) and we can share ideas and collaborate. ## Who are the current maintainers? diff --git a/netlify.toml b/netlify.toml index 5bc3b32d..2fa70518 100644 --- a/netlify.toml +++ b/netlify.toml @@ -4,3 +4,8 @@ [build] publish = "docs/.vitepress/dist" command = "npx pnpm i --store=node_modules/.pnpm-store && npm run docs:build:ci" +[[redirects]] + from = "https://chat.fakerjs.dev" + to = "https://discord.com/invite/4qDjAmDj4P" + status = 301 + force = true |
