diff --git a/docs/addons/slack.md b/docs/addons/slack.md index 4d5ba1ef92..01975d7dae 100644 --- a/docs/addons/slack.md +++ b/docs/addons/slack.md @@ -19,6 +19,8 @@ You can choose to trigger updates for the following events (we might add more ev - feature-updated - feature-archived - feature-revived +- feature-stale-on +- feature-stale-off #### Parameters diff --git a/docs/addons/webhook.md b/docs/addons/webhook.md index b939b3c438..4dc6bb7760 100644 --- a/docs/addons/webhook.md +++ b/docs/addons/webhook.md @@ -19,6 +19,10 @@ You can choose to trigger updates for the following events (we might add more ev - feature-updated - feature-archived - feature-revived +- feature-stale-on +- feature-stale-off + +(we will add more events in the future!) #### Parameters diff --git a/src/lib/addons/slack-definition.js b/src/lib/addons/slack-definition.js index 527474a37f..f9e7b33d61 100644 --- a/src/lib/addons/slack-definition.js +++ b/src/lib/addons/slack-definition.js @@ -13,7 +13,7 @@ module.exports = { name: 'slack', displayName: 'Slack', description: 'Allows Unleash to post updates to Slack.', - documentationUrl: 'https://unleash.github.io/docs/addons/slack', + documentationUrl: 'https://docs.getunleash.io/docs/addons/slack', parameters: [ { name: 'url', diff --git a/src/lib/addons/webhook-definition.js b/src/lib/addons/webhook-definition.js index 898a30d79d..2c237bbbdf 100644 --- a/src/lib/addons/webhook-definition.js +++ b/src/lib/addons/webhook-definition.js @@ -12,7 +12,7 @@ module.exports = { displayName: 'Webhook', description: 'A Webhook is a generic way to post messages from Unleash to third party services.', - documentationUrl: 'https://unleash.github.io/docs/addons/webhook', + documentationUrl: 'https://docs.getunleash.io/docs/addons/webhook', parameters: [ { name: 'url', @@ -42,7 +42,7 @@ module.exports = { "timestamp": "{{event.data.createdAt}}" }`, description: - "(Optional) You may format the body using a mustache template. If you don't specify anything, the format will similar to the events format (https://unleash.github.io/docs/api/admin/events)", + "(Optional) You may format the body using a mustache template. If you don't specify anything, the format will similar to the events format (https://docs.getunleash.io/docs/api/admin/events)", type: 'textfield', required: false, }, diff --git a/src/lib/logger.js b/src/lib/logger.js index 493b38432a..f01d7cfd5a 100644 --- a/src/lib/logger.js +++ b/src/lib/logger.js @@ -52,6 +52,6 @@ exports.setLoggerProvider = function setLoggerProvider(provider) { loggerProvider = provider; const logger = provider('unleash:logger'); - logger.info(`Your way of configuring a logProvider is depreacted. - See https://unleash.github.io/docs/getting_started for details`); + logger.info(`Your way of configuring a logProvider is deprecated. + See https://docs.getunleash.io/docs/deploy/configuring_unleash for details`); }; diff --git a/src/lib/options.js b/src/lib/options.js index 6666482be3..f396aa4177 100644 --- a/src/lib/options.js +++ b/src/lib/options.js @@ -119,7 +119,7 @@ module.exports = { if (!options.db.host) { throw new Error( - 'Unleash requires database details to start. See https://unleash.github.io/docs/getting_started', + 'Unleash requires database details to start. See https://docs.getunleash.io/docs/deploy/configuring_unleash', ); } diff --git a/website/siteConfig.js b/website/siteConfig.js index 4ff6a8b28b..0f4869603a 100644 --- a/website/siteConfig.js +++ b/website/siteConfig.js @@ -51,7 +51,7 @@ const users = [ const siteConfig = { title: 'Unleash', // Title for your website. tagline: 'The enterprise ready feature toggle service', - url: 'https://unleash.github.io', // Your website URL + url: 'https://docs.getunleash.io', // Your website URL baseUrl: '/', // Base URL for your project */ // For github.io type URLs, you would set the url and baseUrl like: // url: 'https://facebook.github.io', diff --git a/website/static/README.md b/website/static/README.md index a41d1e2ede..1a3409a8ae 100644 --- a/website/static/README.md +++ b/website/static/README.md @@ -1,6 +1,6 @@ The Unleash website was created with [Docusaurus](https://docusaurus.io/). The source code lives as part of the main [Unleash repo on GitHub](https://github.com/Unleash/unleash) and is built and deployed on all merges to master. This makes it easy to keep the documentation in sync with the latest version of Unleash. -It's hosted on https://unleash.github.io/ +It's hosted on https://docs.getunleash.io # What's In This Document