Skip to content

Commit dc02729

Browse files
committed
fix more 404
1 parent 5713f8a commit dc02729

File tree

9 files changed

+21
-21
lines changed

9 files changed

+21
-21
lines changed

_docs/accounts/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ This category explains how to use Unlaunch's console to manage your account.
1111

1212
Here are the topics in this category:
1313

14-
* [Two Factor Authentication](/docs/accounts/2F-auth.md)
15-
* [Reset Password](/docs/accounts/reset-password.md)
16-
* [SSO Google](/docs/accounts/sso-google.md)
14+
* [Two Factor Authentication](2F-auth.md)
15+
* [Reset Password](reset-password.md)
16+
* [SSO Google](sso-google.md)

_docs/features/targetingrules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ You can also remove users from targeting. Follow the steps shown in the image be
3333

3434
## Targeting Rules
3535

36-
Feature flags can have targeting rules, that allows you to control variation served on the basis of certain **[attributes](attributes)** and **conditions**.
36+
Feature flags can have targeting rules, that allows you to control variation served on the basis of certain **[attributes](../attributes/attributes)** and **conditions**.
3737

3838
Targeting Rules consists of three parts:
3939

_docs/getting-started/index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -106,20 +106,20 @@ This step will depend on the type of SDK that you choose depending on the progra
106106
3. To initialize the client, you must provide it with an appropriate SDK/API key. The SDK key can be of three types: Server key, Mobile/App key or Browser/Public key. It uniquely identifies your project and environment and authorizes your project to use your feature flags.
107107
4. Evaluate feature flags using the client to control which variations your users will see. Feature flags are unique identified by keys. You can also control targeting by providing user IDs and attributes and defining targeting rules based on user attributes. For example, show features only to registered users.
108108

109-
The first step is deciding whether you should use **[client-side or server-side SDK](sdks/client-vs-server-side-sdks)**.
109+
The first step is deciding whether you should use **[client-side or server-side SDK](../sdks/client-vs-server-side-sdks)**.
110110

111111
Follow SDK integration guides to integrate SDK in your application:
112112

113113
**Server-side SDKs:**
114-
- [Java](../sdks/server-side-sdks/java-sdk) (Also explained below)
115-
- [Node.js](../sdks/server-side-sdks/nodejs-sdk)
116-
- [.NET](../sdks/server-side-sdks/dotnet-sdk)
117-
- [Go](../sdks/server-side-sdks/go-sdk)
114+
- [Java](../sdks/java-sdk) (Also explained below)
115+
- [Node.js](../sdks/nodejs-sdk)
116+
- [.NET](../sdks/dotnet-sdk)
117+
- [Go](../sdks/go-sdk)
118118

119119
**Client-side SDKs:**
120120

121-
- [Javascript Library](../sdks/client-side-sdks/javascript-library)
122-
- [React SDK](../sdks/client-side-sdks/react-sdk)
121+
- [Javascript Library](../sdks/javascript-library)
122+
- [React SDK](../sdks/react-sdk)
123123

124124
### (Optional) Integration Instructions for the Java SDK
125125

_docs/sdks/dotnet-sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ The Unlaunch .NET SDK provides a few different ways to evaluate feature flags an
106106

107107
##### `GetVariation(flagKey, identity)`
108108

109-
This method evaluates and returns the variation (variation key) for this feature flag that you have defined in the [Unlaunch Console](app.unlaunch.io).
109+
This method evaluates and returns the variation (variation key) for this feature flag that you have defined in the [Unlaunch Console](https://app.unlaunch.io).
110110

111111
This method returns one of the variations according to *targeting or rollout rules* that you may have defined. It will *never throw an exception* nor will it ever return `null`. Instead, it will return `control` if there are any errors such as:
112112

_docs/sdks/go-sdk.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This supports Go language version 1.13 and above.
2222
## Import the SDK Library
2323
There are several ways to add the Unlaunch Go SDK to your project. It depends on what dependency management system you're using.
2424

25-
- If you are using [Go Modules](https://blog.golang.org/using-go-modules,) you can simply import the Unlaunch SDK in your code and `go build` will automatically download it.
25+
- If you are using [Go Modules](https://blog.golang.org/using-go-modules), you can simply import the Unlaunch SDK in your code and `go build` will automatically download it.
2626
- If you are using `dep`, import the SDK packages in your code and run `dep ensure`.
2727
- Or you can simply use `go get` command to:
2828

@@ -101,7 +101,7 @@ The Unlaunch Go SDK provides a few different ways to evaluate feature flags and
101101

102102
##### `Variation(flagKey, identity, attributes)`
103103

104-
This method evaluates and returns the variation (variation key) for this feature flag that you have defined in the [Unlaunch Console](app.unlaunch.io).
104+
This method evaluates and returns the variation (variation key) for this feature flag that you have defined in the [Unlaunch Console](https://app.unlaunch.io).
105105

106106
This method returns one of the variations according to *targeting or rollout rules* that you may have defined. It will *never panic* nor will it ever return empty string. Instead, it will return `control` if there are any errors such as:
107107

@@ -150,7 +150,7 @@ fmt.Printf("The variation for feature is: %s. Evaluation reason is: %s\n",
150150

151151
### Passing Attributes
152152

153-
The [attributes and associated operators](https://docs.unlaunch.io/docs/features/attributes-operators) are used in [targeting rules](https://docs.unlaunch.io/docs/features/targetingrules). These attributes can be passed to the SDK so it can use them when evaluating rules.
153+
The [attributes and associated operators](../attributes/attributes-operators) are used in [targeting rules](https://docs.unlaunch.io/docs/features/targetingrules). These attributes can be passed to the SDK so it can use them when evaluating rules.
154154

155155
The SDK method supports six types of attributes: String, Number, Boolean, Date, DateTime, and Set. Here's an example showing how to pass attributes to `GetVariation()` method.
156156

_docs/sdks/java-sdk.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ To elaborate further on what it means to evaluate a feature flag, suppose you ha
113113

114114
#### Get Variation Key: `getVariation(flagKey, identity)`
115115

116-
This method evaluates and returns the variation (variation key) for this feature flag that you have defined in the [Unlaunch Console](app.unlaunch.io).
116+
This method evaluates and returns the variation (variation key) for this feature flag that you have defined in the [Unlaunch Console](https://app.unlaunch.io).
117117

118118
This method returns one of the variations according to *targeting or rollout rules* that you may have defined. It will *never throw an exception* nor will it ever return `null`. Instead, it will return `control` if there are any errors such as:
119119

@@ -195,7 +195,7 @@ If you want to pass attributes to `getFeature()` method to be used in targeting
195195

196196
### Passing Attributes
197197

198-
The [attributes and associated operators](https://docs.unlaunch.io/docs/features/attributes-operators) are used in [targeting rules](https://docs.unlaunch.io/docs/features/targetingrules). These attributes can be passed to the SDK so it can use them when evaluating rules.
198+
The [attributes and associated operators](../attributes/attributes-operators) are used in [targeting rules](https://docs.unlaunch.io/docs/features/targetingrules). These attributes can be passed to the SDK so it can use them when evaluating rules.
199199

200200
The SDK method supports six types of attributes: String, Number, Boolean, Date, DateTime, and Set. Here's an example showing how to pass attributes to `getVariation()` method.
201201

_docs/sdks/nodejs-sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ The Unlaunch Javascript SDK provides a few different ways to evaluate feature fl
8383

8484
##### `variation(flagKey, Identity)`
8585

86-
This method evaluates and returns the variation (variation key) for this feature flag that you have defined in the [Unlaunch Console](app.unlaunch.io).
86+
This method evaluates and returns the variation (variation key) for this feature flag that you have defined in the [Unlaunch Console](https://app.unlaunch.io).
8787

8888
This method returns one of the variations according to *targeting or rollout rules* that you may have defined. It will *never throw an exception* nor will it ever return `null`. Instead, it will return `control` if there are any errors such as:
8989

_docs/users/access-control.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The following roles are supported for projects:
3434

3535
- **Production Access**: Can create and launch feature flags in Production and all the other environments.
3636

37-
- **Non-Production Access**: Restricted access to production. This role can create feature flags, but can’t launch them in production. They also cannot enable or disable feature flags in production. They can edit feature flags in **non-production** [environments](../features/projects-and-environments#production-vs-non-production-environments) (that is, any environment that is not production.) For example, you can use this role to give access to your Unlaunch projects to new users who are onboarding or to QA engineers. This allows them to try feature flags, but restrict them from making any changes to production environment. In other words, users who are assigned this role can see everything in production environment but cannot change anything.
37+
- **Non-Production Access**: Restricted access to production. This role can create feature flags, but can’t launch them in production. They also cannot enable or disable feature flags in production. They can edit feature flags in **non-production** [environments](../projects/projectsandenvs) (that is, any environment that is not production.) For example, you can use this role to give access to your Unlaunch projects to new users who are onboarding or to QA engineers. This allows them to try feature flags, but restrict them from making any changes to production environment. In other words, users who are assigned this role can see everything in production environment but cannot change anything.
3838

3939
- **Reader**: Read-only access. They can view feature flags, their targeting rules, settings, but aren't allowed to modify anything. They can also access Live Tail, Debugger, Project Settings, and Activity Log.
4040

pages/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ If you don't already have an *Unlaunch account*, please [create one for free](ht
1616
- [Getting Started](docs/getting-started)
1717
- [Target users by ID or attributes to control what they see](docs/features/targetingrules)
1818
- [Create projects and environments](docs/projects)
19-
- [Collaborate across your team](docs/users/team)
19+
- [Collaborate across your team](docs/users/index)
2020
- [Integrations with your favorite tools](docs/integrations)
2121

2222
## <i class="fas fa-cubes gray"></i> SDKs
2323

2424
To access feature flags from your applications, you'll need to use one of our SDKs.
2525

2626
- [Server-side and client-side SDKs](docs/sdks/client-vs-server-side-sdks)
27-
- [How to obtain API Keys](docs/projects/sdk-keys)
27+
- [How to obtain API Keys](docs/sdks/sdk-keys)
2828

2929
### Server-side SDKs
3030
- [Java SDK](docs/sdks/java-sdk) <i class="devicon-java-plain colored icon-size"></i>

0 commit comments

Comments
 (0)