From 9c0848b053b9221254cd348913d70c8b99709861 Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Wed, 24 Nov 2021 12:03:31 +0100 Subject: [PATCH] docs: fix links to old versions of pages; link to new versions. --- website/docs/advanced/custom-activation-strategy.md | 2 +- website/docs/api/client/feature-toggles-api.md | 2 +- website/docs/client-specification.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/website/docs/advanced/custom-activation-strategy.md b/website/docs/advanced/custom-activation-strategy.md index 3d7367373a..007888ba43 100644 --- a/website/docs/advanced/custom-activation-strategy.md +++ b/website/docs/advanced/custom-activation-strategy.md @@ -3,7 +3,7 @@ id: custom_activation_strategy title: Custom Activation Strategy --- -Even though Unleash comes with a few powerful [activation strategies](activation-strategies.md) there might be scenarios where you would like to extend Unleash with your own custom strategies. +Even though Unleash comes with a few powerful [activation strategies](../user_guide/activation-strategies.md) there might be scenarios where you would like to extend Unleash with your own custom strategies. ### Example: TimeStamp Strategy {#example-timestamp-strategy} diff --git a/website/docs/api/client/feature-toggles-api.md b/website/docs/api/client/feature-toggles-api.md index ecbc81cc4f..45f72cb1c6 100644 --- a/website/docs/api/client/feature-toggles-api.md +++ b/website/docs/api/client/feature-toggles-api.md @@ -117,7 +117,7 @@ Used to fetch details about a specific feature toggle. This is mainly provided t > This is a unleash-enterprise feature -Strategy definitions may also contain a `constraints` property. Strategy constraints is a feature in Unleash which work on context fields, which is defined as part of the [Unleash Context](/unleash_context). The purpose is to define a set of rules where all needs to be satisfied in order for the activation strategy to . A [high level description](https://www.unleash-hosted.com/articles/strategy-constraints) of it is available online. +Strategy definitions may also contain a `constraints` property. Strategy constraints is a feature in Unleash which work on context fields, which is defined as part of the [Unleash Context](../../user_guide/unleash-context.md). The purpose is to define a set of rules where all needs to be satisfied in order for the activation strategy to . A [high level description](https://www.unleash-hosted.com/articles/strategy-constraints) of it is available online. **Example response:** diff --git a/website/docs/client-specification.md b/website/docs/client-specification.md index 9510b0eed0..c4f2c7a207 100644 --- a/website/docs/client-specification.md +++ b/website/docs/client-specification.md @@ -94,7 +94,7 @@ function isEnabled(name, unleashContext = {}, defaultValue = false) { Activation strategies are defined and configured in the unleash-service. It is up to the client to provide the actual implementation of each activation strategy. -Unleash also ships with a few built-in strategies, and expects client SDK's to implement these. Read more about these [activation strategies](activation-strategies.md). For the built-in strategies to work as expected the client should also allow the user to define an [unleash-context](unleash-context.md). The context should be possible to pass in as part of the `isEnabled` call. +Unleash also ships with a few built-in strategies, and expects client SDK's to implement these. Read more about these [activation strategies](user_guide/activation-strategies.md). For the built-in strategies to work as expected the client should also allow the user to define an [unleash-context](user_guide/unleash-context.md). The context should be possible to pass in as part of the `isEnabled` call. ### Extension points {#extension-points}