From 76c7a0ff36dbaf6229a0c6abebe40c71036a4283 Mon Sep 17 00:00:00 2001 From: Serhii Pylypchuk Date: Thu, 19 Dec 2024 16:30:45 +0400 Subject: [PATCH] [fix] broken links (special task) --- .../rest_api/routes/rest_routes_overview.md | 88 +++++++++---------- docs/guides/integration_with_react.md | 2 +- docs/guides/integration_with_svelte.md | 2 +- docs/guides/integration_with_vue.md | 2 +- 4 files changed, 47 insertions(+), 47 deletions(-) diff --git a/docs/api/rest_api/routes/rest_routes_overview.md b/docs/api/rest_api/routes/rest_routes_overview.md index f9f1ec8..c5a783b 100644 --- a/docs/api/rest_api/routes/rest_routes_overview.md +++ b/docs/api/rest_api/routes/rest_routes_overview.md @@ -37,43 +37,43 @@ For quick navigation you can use either of the two tabs below: -GET - /tasks +`GET` + /tasks Gets data on all tasks and returns a json object with an array of tasks objects -GET - /project/tasks +`GET` + /project/tasks Gets data on all tasks of the specified project and returns a json object with an array of all tasks objects for this specified project -POST - /tasks +`POST` + /tasks Creates a new task and returns a task object with the ID of a new task -POST - /clone +`POST` + /clone Creates a copy of a task and returns a json object with the client task ID and duplicated task ID of the server -PUT - /tasks +`PUT` + /tasks Updates data on the specified task(s) and returns an empty json object -PUT - /move +`PUT` + /move Moves a task to the specified position and returns an empty json object -PUT - /sort +`PUT` + /sort Sorts all tasks of an active project by the specified parameters and returns an empty json object -DELETE - /tasks +`DELETE` + /tasks Deletes data on a task and returns an empty json object @@ -93,22 +93,22 @@ For quick navigation you can use either of the two tabs below: -GET - /projects +`GET` + /projects Gets data on all projects and returns a json object with an array of projects objects -POST - /projects +`POST` + /projects Creates a new project and returns a project object with the project ID in it -PUT - /projectsUpdates data on a project and returns an empty json object +`PUT` + /projectsUpdates data on a project and returns an empty json object -DELETE - /projects +`DELETE` + /projects Deletes data on a project and returns an empty json object @@ -127,8 +127,8 @@ For quick navigation you can use either of the two tabs below: -GET - /users +`GET` + /users Gets data on all users and returns a json object with an array of users objects @@ -147,8 +147,8 @@ For quick navigation you can use either of the two tabs below: -GET - /tags +`GET` + /tags Gets data on all tags and returns a json object with an array of these tags @@ -172,23 +172,23 @@ For quick navigation you can use either of the two tabs below: -GET /users +GET /users Returns a json object with an array of all users objects -GET /tasks +GET /tasks Returns a json object with an array of all tasks objects -GET /projects +GET /projects Returns a json object with an array of all available projects objects -GET /tags +GET /tags Returns a json object with an array of all default tags -GET /project/tasks +GET /project/tasks Returns a json object with an array of all tasks objects for the specified project @@ -206,15 +206,15 @@ For quick navigation you can use either of the two tabs below: -POST /clone +POST /clone Returns a json object with the client task ID and duplicated task ID of the server. -POST /projects +POST /projects Returns a new project object with the project ID in it -POST /tasks +POST /tasks Returns a new task object with the ID of a new task @@ -230,22 +230,22 @@ For quick navigation you can use either of the two tabs below: -PUT /move +PUT /move Returns an empty json object in case tasks are successfully moved as requested -PUT /sort +PUT /sort Returns an empty json object in case tasks are sorted as requested -PUT /tasks +PUT /tasks Returns an empty json object in case a task is modified as requested -PUT /projectsReturns an empty json object in case a project is modified as requested +PUT /projectsReturns an empty json object in case a project is modified as requested - + @@ -258,11 +258,11 @@ For quick navigation you can use either of the two tabs below: -DELETE /tasks +DELETE /tasks Returns an empty json object in case a task is successfully removed -DELETE /projects +DELETE /projects Returns an empty json object in case a project is successfully removed @@ -273,4 +273,4 @@ For quick navigation you can use either of the two tabs below: - \ No newline at end of file + diff --git a/docs/guides/integration_with_react.md b/docs/guides/integration_with_react.md index 819fe17..7df9545 100644 --- a/docs/guides/integration_with_react.md +++ b/docs/guides/integration_with_react.md @@ -15,7 +15,7 @@ DHTMLX To Do List is compatible with **React**. We have prepared code examples o ## Creating a project :::info -Before you start to create a new project, install [**Vite**](https://vitejs.dev/) (optional) and [**Node.js**](https://nodejs.org/en/). +Before you start to create a new project, install [**Vite**](https://vite.dev/) (optional) and [**Node.js**](https://nodejs.org/en/). ::: You can create a basic **React** project or use **React with Vite**. Let's name the project as **my-react-todo-app**: diff --git a/docs/guides/integration_with_svelte.md b/docs/guides/integration_with_svelte.md index b5b200c..dc2c956 100644 --- a/docs/guides/integration_with_svelte.md +++ b/docs/guides/integration_with_svelte.md @@ -15,7 +15,7 @@ DHTMLX To Do List is compatible with **Svelte**. We have prepared code examples ## Creating a project :::info -Before you start to create a new project, install [**Vite**](https://vitejs.dev/) (optional) and [**Node.js**](https://nodejs.org/en/). +Before you start to create a new project, install [**Vite**](https://vite.dev/) (optional) and [**Node.js**](https://nodejs.org/en/). ::: There are several ways of creating a **Svelte** project: diff --git a/docs/guides/integration_with_vue.md b/docs/guides/integration_with_vue.md index f468e59..6fff083 100644 --- a/docs/guides/integration_with_vue.md +++ b/docs/guides/integration_with_vue.md @@ -7,7 +7,7 @@ description: You can learn about the integration with Vue in the documentation o # Integration with Vue :::tip -You should be familiar with the basic concepts and patterns of [**Vue**](https://vuejs.org/) before reading this documentation. To refresh your knowledge, please refer to the [**Vue 3 documentation**](https://v3.vuejs.org/guide/introduction.html#getting-started). +You should be familiar with the basic concepts and patterns of [**Vue**](https://vuejs.org/) before reading this documentation. To refresh your knowledge, please refer to the [**Vue 3 documentation**](https://vuejs.org/guide/introduction.html#getting-started). ::: DHTMLX To Do List is compatible with **Vue**. We have prepared code examples on how to use DHTMLX To Do List with **Vue 3**. For more information, refer to the corresponding [**Example on GitHub**](https://github.com/DHTMLX/vue-todolist-demo).