diff --git a/handbook/README.md b/handbook/README.md index 7e5f7bb877..8703880b31 100644 --- a/handbook/README.md +++ b/handbook/README.md @@ -42,22 +42,26 @@ The Fleet handbook is the central guide for how we run the company. As part of o ### Growth -[Promoting blog posts on social media](./growth.md#promoting-blog-posts-on-social-media) - [Website](./growth.md#website) [Communicating as Fleet](./growth.md#communicating-as-fleet) [Voice and grammar guidelines](./growth.md#voice-and-grammar-guidelines) -### Customer experience +### Customers -[Customer succcess](./customer-experience.md#customer-success) +[Customer succcess](./customers.md#customer-success) -[Support process](./customer-experience.md#support-process) +[Support process](./customers.md#support-process) ### Community +[Posting on social media as Fleet](./community.md#posting-on-social-media-as-fleet) + +[Promoting blog posts on social media](./growth.md#promoting-blog-posts-on-social-media) + +[Press releases](./community.md#press-releases) + [Community contributions (pull requests)](./community.md#community-contributions-pull-requests) ### Handbook @@ -66,6 +70,8 @@ The Fleet handbook is the central guide for how we run the company. As part of o [Handbook style guide](./handbook.md#handbook-style-guide) +[Contributing to the handbook](./handbook.md#contributing-to-the-handbook) + diff --git a/handbook/customer-experience.md b/handbook/customers.md similarity index 100% rename from handbook/customer-experience.md rename to handbook/customers.md diff --git a/handbook/engineering.md b/handbook/engineering.md index 6c66e409bc..57960579d6 100644 --- a/handbook/engineering.md +++ b/handbook/engineering.md @@ -26,7 +26,7 @@ Documentation on completing the release process can be found This section outlines the on-call rotation at Fleet. -The on-call engineer is responsible for responding to technical Slack comments, Slack threads, and GitHub issues raised by customers and the community which cannot handled by the [Customer Success team](./customer-experience.md). +The on-call engineer is responsible for responding to technical Slack comments, Slack threads, and GitHub issues raised by customers and the community which cannot handled by the [Customer Success team](./customers.md). ### Goals At Fleet, our primary quality objectives are *customer service* and *defect reduction*. This entails Key Performance Indicators such as customer response time and number of bugs resolved per cycle and. diff --git a/handbook/product.md b/handbook/product.md index 52f91a160f..ce45b70ddd 100644 --- a/handbook/product.md +++ b/handbook/product.md @@ -329,7 +329,7 @@ An example release blog post issue can be found [here](https://github.com/fleetd ### Customer announcement -The product team is responsible for providing the [customer success team](./customer-experience.md) with necessary information +The product team is responsible for providing the [customer success team](./customers.md) with necessary information for writing a release customer announcement. This is accomplished by filing a release customer announcement issue and adding the issue to the customer success board on GitHub. diff --git a/website/config/routes.js b/website/config/routes.js index 60965b9dc3..5bb9d50253 100644 --- a/website/config/routes.js +++ b/website/config/routes.js @@ -68,21 +68,13 @@ module.exports.routes = { } }, - 'GET /docs/*': { + 'GET /docs/?*': { skipAssets: false, action: 'docs/view-basic-documentation', locals: { currentPage: 'docs', } - },// handles /docs/foo/bar - - 'GET /docs': { - skipAssets: false, - action: 'docs/view-basic-documentation', - locals: { - currentPage: 'docs', - } - },// handles /docs, TODO: Remove this route once this bug is fixed in Sails + },// handles /docs and /docs/foo/bar 'GET /handbook/?*': { skipAssets: false, @@ -167,6 +159,7 @@ module.exports.routes = { // ``` 'GET /try-fleet': '/get-started', 'GET /docs/deploying/fleet-public-load-testing': '/docs/deploying/load-testing', + 'GET /handbook/customer-experience': '/handbook/customers', diff --git a/website/package.json b/website/package.json index 3eef9bc909..671bb9ed17 100644 --- a/website/package.json +++ b/website/package.json @@ -10,7 +10,7 @@ "@sailshq/socket.io-redis": "^5.2.0", "jsonwebtoken": "8.5.1", "machinepack-github": "^5.0.0", - "sails": "^1.4.4", + "sails": "^1.5.2", "sails-hook-apianalytics": "^2.0.5", "sails-hook-organics": "^2.2.0", "sails-hook-orm": "^3.0.2",