Skip to content

Commit 537ea7d

Browse files
committed
[documentation] remove relative URLs trailing slashes to prevent a root URL duplication bug
1 parent a3910ca commit 537ea7d

File tree

35 files changed

+41
-41
lines changed

35 files changed

+41
-41
lines changed

doc/6/controllers/auth/refresh-token/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ The `refreshToken` action resolves to a token object with the following properti
4848

4949
| Property | Type | Description |
5050
|--------------|---------|-------------|
51-
| `_id` | <pre>string</pre> | User unique identifier ([kuid](/core/1/guides/essentials/user-authentication/#kuzzle-user-identifier-kuid)) |
51+
| `_id` | <pre>string</pre> | User unique identifier ([kuid](/core/1/guides/essentials/user-authentication#kuzzle-user-identifier-kuid)) |
5252
| `expiresAt` | <pre>number</pre> | Expiration timestamp in Epoch-millis format (UTC) |
5353
| `jwt` | <pre>string</pre> | Authentication token |
5454
| `ttl` | <pre>number</pre> | Time to live of the authentication token, in milliseconds |

doc/6/controllers/bulk/import/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Create, update or delete large amount of documents as fast as possible.
1111

1212
This route is faster than the `document:m*` routes family (e.g. [document:mCreate](/sdk/js/6/controllers/document/m-create)), but no real-time notifications will be generated, even if some of the documents in the import match subscription filters.
1313

14-
If some documents actions fail, the client will receive a [PartialError](/core/1/api/essentials/errors/#partialerror) error.
14+
If some documents actions fail, the client will receive a [PartialError](/core/1/api/essentials/errors#partialerror) error.
1515

1616
<br/>
1717

doc/6/controllers/bulk/mWrite/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Each created document is an object with the following properties:
6363
| `_version` | <pre>number</pre> | Version of the document in the persistent data storage |
6464
| `_source` | <pre>object</pre> | Created document |
6565

66-
If one or more document creations fail, the promise is rejected and the `error` object contains a [partial error](/core/1/api/essentials/errors/#partialerror) error.
66+
If one or more document creations fail, the promise is rejected and the `error` object contains a [partial error](/core/1/api/essentials/errors#partialerror) error.
6767

6868
## Usage
6969

doc/6/controllers/collection/update-mapping/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ description: Update the collection mapping
99

1010
<SinceBadge version="1.7.1" />
1111

12-
You can define the collection [dynamic mapping policy](/core/1/guides/essentials/database-mappings/#dynamic-mapping-policy) by setting the `dynamic` field to the desired value.
12+
You can define the collection [dynamic mapping policy](/core/1/guides/essentials/database-mappings#dynamic-mapping-policy) by setting the `dynamic` field to the desired value.
1313

14-
You can define [collection additional metadata](/core/1/guides/essentials/database-mappings/#collection-metadata) within the `_meta` root field.
14+
You can define [collection additional metadata](/core/1/guides/essentials/database-mappings#collection-metadata) within the `_meta` root field.
1515

1616
<br/>
1717

doc/6/controllers/security/create-credentials/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ createCredentials(strategy, kuid, credentials, [options]);
2020
| Property | Type | Description |
2121
| --- | --- | --- |
2222
| `strategy` | <pre>string</pre> | Strategy to use |
23-
| `kuid` | <pre>string</pre> | User [kuid](/core/1/guides/essentials/user-authentication/#kuzzle-user-identifier-kuid) |
23+
| `kuid` | <pre>string</pre> | User [kuid](/core/1/guides/essentials/user-authentication#kuzzle-user-identifier-kuid) |
2424
| `credentials` | <pre>object</pre> | New credentials |
2525
| `options` | <pre>object</pre> | Query options |
2626

doc/6/controllers/security/create-first-admin/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ createFirstAdmin(kuid, body, [options]);
1919

2020
| Property | Type | Description |
2121
| --- | --- | --- |
22-
| `kuid` | <pre>string</pre> | Administrator [kuid](/core/1/guides/essentials/user-authentication/#kuzzle-user-identifier-kuid) |
22+
| `kuid` | <pre>string</pre> | Administrator [kuid](/core/1/guides/essentials/user-authentication#kuzzle-user-identifier-kuid) |
2323
| `body` | <pre>object</pre> | Administrator content &amp; credentials |
2424
| `options` | <pre>object</pre> | Query options |
2525

doc/6/controllers/security/create-or-replace-profile/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ createOrReplaceProfile(id, body, [options]);
2727

2828
| Property | Type | Description |
2929
| --- | --- | --- |
30-
| `policies` | <pre>object</pre> | [Profile content](/core/1/guides/essentials/security/#defining-profiles) |
30+
| `policies` | <pre>object</pre> | [Profile content](/core/1/guides/essentials/security#defining-profiles) |
3131

3232
### options
3333

doc/6/controllers/security/create-or-replace-role/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ createOrReplaceRole(id, body, [options]);
2727

2828
| Property | Type | Description |
2929
| --- | --- | --- |
30-
| `controllers` | <pre>object</pre> | [Role definition](/core/1/guides/essentials/security/#defining-roles) |
30+
| `controllers` | <pre>object</pre> | [Role definition](/core/1/guides/essentials/security#defining-roles) |
3131

3232
### options
3333

doc/6/controllers/security/create-profile/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ createProfile(id, profile, [options]);
2020
| Property | Type | Description |
2121
|--- |--- |--- |
2222
| `id` | <pre>string</pre> | Profile identifier |
23-
| `profile` | <pre>object</pre> | [Profile definition content](/core/1/guides/essentials/security/#defining-profiles) |
23+
| `profile` | <pre>object</pre> | [Profile definition content](/core/1/guides/essentials/security#defining-profiles) |
2424
| `options` | <pre>object</pre> | Query options |
2525

2626
### options

doc/6/controllers/security/create-restricted-user/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ createRestrictedUser(body, [kuid], [options]);
2525
| Property | Type | Description |
2626
|--- |--- |--- |
2727
| `body` | <pre>object</pre> | User content &amp; credentials |
28-
| `kuid` | <pre>string</pre> | User [kuid](/core/1/guides/essentials/user-authentication/#kuzzle-user-identifier-kuid). If not provided, a random kuid is automatically generated |
28+
| `kuid` | <pre>string</pre> | User [kuid](/core/1/guides/essentials/user-authentication#kuzzle-user-identifier-kuid). If not provided, a random kuid is automatically generated |
2929
| `options` | <pre>object</pre> | Query options |
3030

3131

0 commit comments

Comments
 (0)