Skip to content

Commit 089fc16

Browse files
Remove placeholders (#5224)
1 parent c27e278 commit 089fc16

File tree

6 files changed

+14
-15
lines changed

6 files changed

+14
-15
lines changed

docs/.vuepress/config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ export default defineUserConfig({
2424
md.use(linkCheckPlugin);
2525
md.use(replaceLinkPlugin, {
2626
replaceLink: (link: string, _) => link
27-
.replace("@server", "/server")
2827
.replace("@httpapi/data/", projectionSamplesPath)
2928
});
3029
md.use(dl);

docs/server/http-api/api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@ curl -X PUT https://eventstore.com/subscriptions/{stream}/{subscription} \
737737
`PUT /subscriptions/{stream}/{subscription}`
738738
*Create a persistent subscription*
739739

740-
Before interacting with a subscription group, you need to create one. You will receive an error if you attempt to create a subscription group more than once. This requires [admin permissions](@server/security.md#access-control-lists).
740+
Before interacting with a subscription group, you need to create one. You will receive an error if you attempt to create a subscription group more than once. This requires [admin permissions](../security.md#access-control-lists).
741741

742742
> Body parameter
743743

docs/server/http-api/optional-http-headers.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ EventStoreDB supports custom HTTP headers for requests. The headers were previou
1010

1111
The headers supported are:
1212

13-
| Header | Description |
14-
|------------------------------------------------------------|----------------------------------------------------------------------------------------------------|
15-
| [ES-ExpectedVersion](#expected-version) | The expected version of the stream (allows optimistic concurrency) |
16-
| [ES-ResolveLinkTo](#resolve-linkto) | Whether to resolve `linkTos` in stream |
17-
| [ES-RequiresMaster](#requires-master) | Whether this operation needs to run on the master node |
18-
| [ES-TrustedAuth](@server/security.md#trusted-intermediary) | Allows a trusted intermediary to handle authentication |
19-
| [ES-LongPoll](#longpoll) | Instructs the server to do a long poll operation on a stream read |
20-
| [ES-HardDelete](#harddelete) | Instructs the server to hard delete the stream when deleting as opposed to the default soft delete |
21-
| [ES-EventType](#eventtype) | Instructs the server the event type associated to a posted body |
22-
| [ES-EventId](#eventid) | Instructs the server the event id associated to a posted body |
13+
| Header | Description |
14+
|-------------------------------------------------------|----------------------------------------------------------------------------------------------------|
15+
| [ES-ExpectedVersion](#expected-version) | The expected version of the stream (allows optimistic concurrency) |
16+
| [ES-ResolveLinkTo](#resolve-linkto) | Whether to resolve `linkTos` in stream |
17+
| [ES-RequiresMaster](#requires-master) | Whether this operation needs to run on the master node |
18+
| [ES-TrustedAuth](../security.md#trusted-intermediary) | Allows a trusted intermediary to handle authentication |
19+
| [ES-LongPoll](#longpoll) | Instructs the server to do a long poll operation on a stream read |
20+
| [ES-HardDelete](#harddelete) | Instructs the server to hard delete the stream when deleting as opposed to the default soft delete |
21+
| [ES-EventType](#eventtype) | Instructs the server the event type associated to a posted body |
22+
| [ES-EventId](#eventid) | Instructs the server the event id associated to a posted body |
2323

2424
## EventID
2525

docs/server/http-api/persistent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ order: 3
44

55
# Persistent subscriptions
66

7-
This document explains how to use HTTP API for setting up and consuming persistent subscriptions and competing consumer subscription groups. For an overview on competing consumers and how they relate to other subscription types please see our [getting started guide](@server/persistent-subscriptions.md).
7+
This document explains how to use HTTP API for setting up and consuming persistent subscriptions and competing consumer subscription groups. For an overview on competing consumers and how they relate to other subscription types please see our [getting started guide](../persistent-subscriptions.md).
88

99
::: tip
1010
The Administration UI includes a _Competing Consumers_ section where you are able to create, update, delete and view subscriptions and their statuses.

docs/server/http-api/projections.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Then send the update to the projection:
106106
@[code](@samples/http-api/projections/update-projection-options.sh)
107107

108108
::: tip
109-
You can find all the options available in the [user-defined projections guide](@server/projections.md#user-defined-projections).
109+
You can find all the options available in the [user-defined projections guide](../projections.md#user-defined-projections).
110110
:::
111111

112112
Now you can read the result as above, but use the new stream name:

docs/server/http-api/security.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ If you were to use the wrong user or no user when a request requires one, you re
3434
@[code](@samples/http-api/incorrect-user.http)
3535
:::
3636

37-
As you pass the username and password in the request we recommend you to enable SSL to encrypt the user information. [Read this guide for instructions](@server/security.md).
37+
As you pass the username and password in the request we recommend you to enable SSL to encrypt the user information. [Read this guide for instructions](../security.md).
3838

3939
## Access control lists
4040

0 commit comments

Comments
 (0)