From 267d3ed7698b6b22544ec351a3f5d8924f08a201 Mon Sep 17 00:00:00 2001 From: Felix Ableitner Date: Thu, 17 Jun 2021 16:36:38 +0200 Subject: [PATCH] Replace join.lemmy.ml with join-lemmy.org --- src/en/client_development/api_reference.md | 2 +- src/en/client_development/client_development.md | 2 +- src/en/client_development/http_api.md | 4 ++-- src/en/client_development/websocket_api.md | 2 +- src/es/client_development/api_reference.md | 2 +- src/es/client_development/client_development.md | 2 +- src/es/client_development/http_api.md | 4 ++-- src/es/client_development/websocket_api.md | 2 +- src/fr/client_development/websocket_api.md | 2 +- src/ru/client_development/api_reference.md | 2 +- src/ru/client_development/client_development.md | 2 +- src/ru/client_development/websocket_api.md | 2 +- 12 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/en/client_development/api_reference.md b/src/en/client_development/api_reference.md index f6436c0..8d4afab 100644 --- a/src/en/client_development/api_reference.md +++ b/src/en/client_development/api_reference.md @@ -1,7 +1,7 @@ # API reference Lemmy has two, intertwined APIs: -- [WebSocket](https://join.lemmy.ml/api/index.html) +- [WebSocket](https://join-lemmy.org/api/index.html) - [HTTP](http_api.md) This page describes concepts that are common to both. diff --git a/src/en/client_development/client_development.md b/src/en/client_development/client_development.md index a5e6fef..a6d67ba 100644 --- a/src/en/client_development/client_development.md +++ b/src/en/client_development/client_development.md @@ -2,5 +2,5 @@ - [Theming Guide](client_development/theming.md) - [API reference](client_development/api_reference.md) -- [WebSocket API](https://join.lemmy.ml/api/index.html) +- [WebSocket API](https://join-lemmy.org/api/index.html) - [HTTP API](client_development/http_api.md) \ No newline at end of file diff --git a/src/en/client_development/http_api.md b/src/en/client_development/http_api.md index f75e7e6..c522c0b 100644 --- a/src/en/client_development/http_api.md +++ b/src/en/client_development/http_api.md @@ -20,14 +20,14 @@ ## WebSocket vs HTTP API Lemmy's HTTP API is almost identical to its WebSocket API: -- **WebSocket API** needs `let send = { op: userOperation[op], data: form}` as shown in [the WebSocketAPI specification](https://join.lemmy.ml/api/index.html) +- **WebSocket API** needs `let send = { op: userOperation[op], data: form}` as shown in [the WebSocketAPI specification](https://join-lemmy.org/api/index.html) - **HTTP API** needs the form (data) at the top level, an HTTP operation (GET, PUT or POST) and endpoint (at `http(s)://host/api/v2/endpoint`). For example: > `POST {username_or_email: X, password: X}` For more information, see the [http.ts](https://github.com/LemmyNet/lemmy-js-client/blob/main/src/http.ts) file. -[The WebSocket API](https://join.lemmy.ml/api/index.html) should be regarded as the primary source for the HTTP API since it also provides information about how to form HTTP API calls. +[The WebSocket API](https://join-lemmy.org/api/index.html) should be regarded as the primary source for the HTTP API since it also provides information about how to form HTTP API calls. ## Examples diff --git a/src/en/client_development/websocket_api.md b/src/en/client_development/websocket_api.md index a164c63..1bd735d 100644 --- a/src/en/client_development/websocket_api.md +++ b/src/en/client_development/websocket_api.md @@ -1 +1 @@ -# [WebSocket API](https://join.lemmy.ml/api/index.html) +# [WebSocket API](https://join-lemmy.org/api/index.html) diff --git a/src/es/client_development/api_reference.md b/src/es/client_development/api_reference.md index f6436c0..8d4afab 100644 --- a/src/es/client_development/api_reference.md +++ b/src/es/client_development/api_reference.md @@ -1,7 +1,7 @@ # API reference Lemmy has two, intertwined APIs: -- [WebSocket](https://join.lemmy.ml/api/index.html) +- [WebSocket](https://join-lemmy.org/api/index.html) - [HTTP](http_api.md) This page describes concepts that are common to both. diff --git a/src/es/client_development/client_development.md b/src/es/client_development/client_development.md index a5e6fef..a6d67ba 100644 --- a/src/es/client_development/client_development.md +++ b/src/es/client_development/client_development.md @@ -2,5 +2,5 @@ - [Theming Guide](client_development/theming.md) - [API reference](client_development/api_reference.md) -- [WebSocket API](https://join.lemmy.ml/api/index.html) +- [WebSocket API](https://join-lemmy.org/api/index.html) - [HTTP API](client_development/http_api.md) \ No newline at end of file diff --git a/src/es/client_development/http_api.md b/src/es/client_development/http_api.md index f75e7e6..c522c0b 100644 --- a/src/es/client_development/http_api.md +++ b/src/es/client_development/http_api.md @@ -20,14 +20,14 @@ ## WebSocket vs HTTP API Lemmy's HTTP API is almost identical to its WebSocket API: -- **WebSocket API** needs `let send = { op: userOperation[op], data: form}` as shown in [the WebSocketAPI specification](https://join.lemmy.ml/api/index.html) +- **WebSocket API** needs `let send = { op: userOperation[op], data: form}` as shown in [the WebSocketAPI specification](https://join-lemmy.org/api/index.html) - **HTTP API** needs the form (data) at the top level, an HTTP operation (GET, PUT or POST) and endpoint (at `http(s)://host/api/v2/endpoint`). For example: > `POST {username_or_email: X, password: X}` For more information, see the [http.ts](https://github.com/LemmyNet/lemmy-js-client/blob/main/src/http.ts) file. -[The WebSocket API](https://join.lemmy.ml/api/index.html) should be regarded as the primary source for the HTTP API since it also provides information about how to form HTTP API calls. +[The WebSocket API](https://join-lemmy.org/api/index.html) should be regarded as the primary source for the HTTP API since it also provides information about how to form HTTP API calls. ## Examples diff --git a/src/es/client_development/websocket_api.md b/src/es/client_development/websocket_api.md index a164c63..1bd735d 100644 --- a/src/es/client_development/websocket_api.md +++ b/src/es/client_development/websocket_api.md @@ -1 +1 @@ -# [WebSocket API](https://join.lemmy.ml/api/index.html) +# [WebSocket API](https://join-lemmy.org/api/index.html) diff --git a/src/fr/client_development/websocket_api.md b/src/fr/client_development/websocket_api.md index a164c63..1bd735d 100644 --- a/src/fr/client_development/websocket_api.md +++ b/src/fr/client_development/websocket_api.md @@ -1 +1 @@ -# [WebSocket API](https://join.lemmy.ml/api/index.html) +# [WebSocket API](https://join-lemmy.org/api/index.html) diff --git a/src/ru/client_development/api_reference.md b/src/ru/client_development/api_reference.md index 846d960..2bff266 100644 --- a/src/ru/client_development/api_reference.md +++ b/src/ru/client_development/api_reference.md @@ -1,7 +1,7 @@ # Справочник по API Lemmy имеет два взаимосвязанных API: -- [WebSocket (анг.язык)](https://join.lemmy.ml/api/index.html) +- [WebSocket (анг.язык)](https://join-lemmy.org/api/index.html) - [HTTP (анг.язык)](http_api.md) На этой странице описаны общие для них концепции. diff --git a/src/ru/client_development/client_development.md b/src/ru/client_development/client_development.md index 94f0291..ddd7d94 100644 --- a/src/ru/client_development/client_development.md +++ b/src/ru/client_development/client_development.md @@ -2,5 +2,5 @@ - [Тематическое руководство ](client_development/theming.md) - [Справочник по API](client_development/api_reference.md) -- [WebSocket API](https://join.lemmy.ml/api/index.html) +- [WebSocket API](https://join-lemmy.org/api/index.html) - [HTTP API](client_development/http_api.md) diff --git a/src/ru/client_development/websocket_api.md b/src/ru/client_development/websocket_api.md index a164c63..1bd735d 100644 --- a/src/ru/client_development/websocket_api.md +++ b/src/ru/client_development/websocket_api.md @@ -1 +1 @@ -# [WebSocket API](https://join.lemmy.ml/api/index.html) +# [WebSocket API](https://join-lemmy.org/api/index.html)