Skip to content

Commit

Permalink
[fix] broken links (special task)
Browse files Browse the repository at this point in the history
  • Loading branch information
serhiipylypchuk1991 committed Dec 19, 2024
1 parent 703fec0 commit d7c73f4
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 23 deletions.
40 changes: 20 additions & 20 deletions docs/api/overview/rest_routes_overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,23 +31,23 @@ For quick navigation you can use either the tabs below or the side menu:
</thead>
<tbody>
<tr>
<td>GET</td>
<td><a href="../../../api/provider/rest_routes/get_routes/js_eventcalendar_getevents_route"> /events</a></td>
<td>`GET`</td>
<td><a href="../../../api/provider/rest_routes/get_routes/js_eventcalendar_getevents_route/"> /events</a></td>
<td>Gets data on all events and returns a json object with an array of events objects</td>
</tr>
<tr>
<td>POST</td>
<td><a href=" ../../../api/provider/rest_routes/post_routes/js_eventcalendar_postevent_route"> /events</a></td>
<td>`POST`</td>
<td><a href="../../../api/provider/rest_routes/post_routes/js_eventcalendar_postevent_route/"> /events</a></td>
<td>Creates a new event and returns a json object with the event ID in it</td>
</tr>
<tr>
<td>PUT</td>
<td><a href=" ../../../api/provider/rest_routes/put_routes/js_eventcalendar_putevent_route"> /events</a></td>
<td>`PUT`</td>
<td><a href="../../../api/provider/rest_routes/put_routes/js_eventcalendar_putevent_route/"> /events</a></td>
<td>Updates data on an event</td>
</tr>
<tr>
<td>DELETE</td>
<td><a href=" ../../../api/provider/rest_routes/delete_routes/js_eventcalendar_deleteevent_route"> /events</a></td>
<td>`DELETE`</td>
<td><a href="../../../api/provider/rest_routes/delete_routes/js_eventcalendar_deleteevent_route/"> /events</a></td>
<td>Deletes data on an event</td>
</tr>
</tbody>
Expand All @@ -67,22 +67,22 @@ For quick navigation you can use either the tabs below or the side menu:
</thead>
<tbody>
<tr>
<td>GET</td>
<td><a href=" ../../../api/provider/rest_routes/get_routes/js_eventcalendar_getcalendars_route"> /calendars</a></td>
<td>`GET`</td>
<td><a href="../../../api/provider/rest_routes/get_routes/js_eventcalendar_getcalendars_route/"> /calendars</a></td>
<td>Gets data on all calendars and returns a json object with an array of calendars objects</td>
</tr>
<tr>
<td>POST</td>
<td ><a href=" ../../../api/provider/rest_routes/post_routes/js_eventcalendar_postcalendar_route"> /calendars</a></td>
<td>`POST`</td>
<td ><a href="../../../api/provider/rest_routes/post_routes/js_eventcalendar_postcalendar_route/"> /calendars</a></td>
<td>Creates a new calendar (event type) and returns a json object with the calendar ID in it</td>
</tr>
<tr>
<td>PUT</td>
<td><a href=" ../../../api/provider/rest_routes/put_routes/js_eventcalendar_putcalendar_route"> /calendars</a></td><td>Updates data on a calendar (event type)</td>
<td>`PUT`</td>
<td><a href="../../../api/provider/rest_routes/put_routes/js_eventcalendar_putcalendar_route/"> /calendars</a></td><td>Updates data on a calendar (event type)</td>
</tr>
<tr>
<td>DELETE</td>
<td><a href=" ../../../api/provider/rest_routes/delete_routes/js_eventcalendar_deletecalendar_route"> /calendars</a></td>
<td>`DELETE`</td>
<td><a href="../../../api/provider/rest_routes/delete_routes/js_eventcalendar_deletecalendar_route/"> /calendars</a></td>
<td>Deletes data on a calendar (event type)</td>
</tr>
</tbody>
Expand All @@ -101,13 +101,13 @@ For quick navigation you can use either the tabs below or the side menu:
</thead>
<tbody>
<tr>
<td>GET</td>
<td><a href=" ../../../api/provider/rest_routes/get_routes/js_eventcalendar_getuploads_route"> /uploads</a></td>
<td>`GET`</td>
<td><a href="../../../api/provider/rest_routes/get_routes/js_eventcalendar_getuploads_route/"> /uploads</a></td>
<td>Gets the requested binary file from the server</td>
</tr>
<tr>
<td>POST</td>
<td><a href=" ../../../api/provider/rest_routes/post_routes/js_eventcalendar_postupload_route"> /uploads</a></td>
<td>`POST`</td>
<td><a href="../../../api/provider/rest_routes/post_routes/js_eventcalendar_postupload_route/"> /uploads</a></td>
<td>Uploads a binary file to the server and returns a json object with its id, name, and url</td>
</tr>
</tbody>
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/integration_with_react.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ DHTMLX Event Calendar is compatible with **React**. We have prepared code exampl
## 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-event-calendar-app**:
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/integration_with_svelte.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ DHTMLX Event Calendar is compatible with **Svelte**. We have prepared code examp
## 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/).
:::

To create a **Svelte** JS project, run the following command:
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/integration_with_vue.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 Event Calendar is compatible with **Vue**. We have prepared code examples on how to use DHTMLX Event Calendar with **Vue 3**. For more information, refer to the corresponding [**Example on GitHub**](https://github.com/DHTMLX/vue-event-calendar-demo).
Expand Down

0 comments on commit d7c73f4

Please sign in to comment.