Skip to content

Commit cf6d512

Browse files
authored
Merge pull request #64 from dyte-in/fix-trailing-slash
fix: trailing slash config and paths changed
2 parents 6ef9d9d + edc7915 commit cf6d512

File tree

51 files changed

+58
-58
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+58
-58
lines changed

android_versioned_docs/version-0.1.x/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ sidebar_position: 2
77
import Tabs from '@theme/Tabs';
88
import TabItem from '@theme/TabItem';
99

10-
Get the `roomName` for the meeting and the participant's `authToken` from our backend APIs (read more about our server APIs [here](/api/)), and pass them to Dyte's client SDK.
10+
Get the `roomName` for the meeting and the participant's `authToken` from our backend APIs (read more about our server APIs [here](/api)), and pass them to Dyte's client SDK.
1111

1212
There are 2 ways to launch a meeting:
1313

android_versioned_docs/version-0.12.x/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ sidebar_position: 2
77
import Tabs from "@theme/Tabs";
88
import TabItem from "@theme/TabItem";
99

10-
Get the `roomName` for the meeting and the participant's `authToken` from our backend APIs (read more about our server APIs [here](/api/)), and pass them to Dyte's client SDK.
10+
Get the `roomName` for the meeting and the participant's `authToken` from our backend APIs (read more about our server APIs [here](/api)), and pass them to Dyte's client SDK.
1111

1212
There are 2 ways to launch a meeting:
1313

android_versioned_docs/version-0.14.x/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ sidebar_position: 2
77
import Tabs from "@theme/Tabs";
88
import TabItem from "@theme/TabItem";
99

10-
Get the `roomName` for the meeting and the participant's `authToken` from our backend APIs (read more about our server APIs [here](/api/)), and pass them to Dyte's client SDK.
10+
Get the `roomName` for the meeting and the participant's `authToken` from our backend APIs (read more about our server APIs [here](/api)), and pass them to Dyte's client SDK.
1111

1212
There are 2 ways to launch a meeting:
1313

android_versioned_docs/version-0.2.x/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ sidebar_position: 2
77
import Tabs from "@theme/Tabs";
88
import TabItem from "@theme/TabItem";
99

10-
Get the `roomName` for the meeting and the participant's `authToken` from our backend APIs (read more about our server APIs [here](/api/)), and pass them to Dyte's client SDK.
10+
Get the `roomName` for the meeting and the participant's `authToken` from our backend APIs (read more about our server APIs [here](/api)), and pass them to Dyte's client SDK.
1111

1212
There are 2 ways to launch a meeting:
1313

android_versioned_docs/version-0.6.x/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ sidebar_position: 2
77
import Tabs from "@theme/Tabs";
88
import TabItem from "@theme/TabItem";
99

10-
Get the `roomName` for the meeting and the participant's `authToken` from our backend APIs (read more about our server APIs [here](/api/)), and pass them to Dyte's client SDK.
10+
Get the `roomName` for the meeting and the participant's `authToken` from our backend APIs (read more about our server APIs [here](/api)), and pass them to Dyte's client SDK.
1111

1212
There are 2 ways to launch a meeting:
1313

android_versioned_docs/version-0.7.x/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ sidebar_position: 2
77
import Tabs from "@theme/Tabs";
88
import TabItem from "@theme/TabItem";
99

10-
Get the `roomName` for the meeting and the participant's `authToken` from our backend APIs (read more about our server APIs [here](/api/)), and pass them to Dyte's client SDK.
10+
Get the `roomName` for the meeting and the participant's `authToken` from our backend APIs (read more about our server APIs [here](/api)), and pass them to Dyte's client SDK.
1111

1212
There are 2 ways to launch a meeting:
1313

docs/android/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ sidebar_position: 2
77
import Tabs from "@theme/Tabs";
88
import TabItem from "@theme/TabItem";
99

10-
Get the `roomName` for the meeting and the participant's `authToken` from our backend APIs (read more about our server APIs [here](/api/)), and pass them to Dyte's client SDK.
10+
Get the `roomName` for the meeting and the participant's `authToken` from our backend APIs (read more about our server APIs [here](/api)), and pass them to Dyte's client SDK.
1111

1212
There are 2 ways to launch a meeting:
1313

docs/flutter/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ sidebar_position: 2
77
import Tabs from "@theme/Tabs";
88
import TabItem from "@theme/TabItem";
99

10-
Get the `roomName` for the meeting and the participant's `authToken` from our backend APIs (read more about our server APIs [here](/api/)), and pass them to Dyte's `DyteMeeting` widget.
10+
Get the `roomName` for the meeting and the participant's `authToken` from our backend APIs (read more about our server APIs [here](/api)), and pass them to Dyte's `DyteMeeting` widget.
1111

1212
1. Import the package.
1313

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Controlling an Active Session
2-
An active session (ongoing meeting) can be controlled programatically using [Active Session APIs](/api/v2/#/operations/GetActiveSession). For now, you can do following things in an Active Session.
2+
An active session (ongoing meeting) can be controlled programatically using [Active Session APIs](/api/v2#operations/GetActiveSession). For now, you can do following things in an Active Session.
33
* Fetch active session details.
44
* Kick one or more participants.
55
* Kick all participants.
@@ -8,25 +8,25 @@ An active session (ongoing meeting) can be controlled programatically using [Act
88
* Create a poll.
99

1010
## Get Active Session details
11-
You can get an active session of a meeting using `meetingId`. Refer to [`GET` active session endpoint](/api/v2/#/operations/GetActiveSession) under [v2 API Reference](/api/v2/#/).
11+
You can get an active session of a meeting using `meetingId`. Refer to [`GET` active session endpoint](/api/v2#operations/GetActiveSession) under [v2 API Reference](/api/v2#).
1212

1313
## Kick one or more participants
1414
You can kick one or multiple participants from an active session using `participant_ids` or `custom_participant_ids`.
1515

1616
> `custom_participant_id` is called `clientSpecificId` in v1 and it's the same id that you pass in body of [Add Participant Endpoint](/api/#/operations/addParticipant)
1717
18-
Refer to [Kick Participant endpoint](/api/v2/#/operations/KickPartcipants) to see complete details.
18+
Refer to [Kick Participant endpoint](/api/v2#operations/KickPartcipants) to see complete details.
1919

2020
## Kick all participants
21-
All participants can be kicked out from an active session using [Kick all endpoint](/api/v2/#/operations/KickAllParticipants)
21+
All participants can be kicked out from an active session using [Kick all endpoint](/api/v2#operations/KickAllParticipants)
2222

2323
## Mute one or more participants
24-
Similar to kicking participants, one or multiple participants can be muted in an active session using `participant_ids` or `custom_participant_ids`. Refer to [Mute participants endpoint](/api/v2/#/operations/MuteParticipants) to see request body and response.
24+
Similar to kicking participants, one or multiple participants can be muted in an active session using `participant_ids` or `custom_participant_ids`. Refer to [Mute participants endpoint](/api/v2#operations/MuteParticipants) to see request body and response.
2525

2626
## Mute all participants
27-
All participants can be muted in an active session using [Mute all endpoint](/api/v2/#/operations/MuteAllParticipants). You can also specify if participants can unmute themselves or not using `allow_unmute` option in request body. Refer to [Mute all endpoint](/api/v2/#/operations/MuteAllParticipants) to see complete details.
27+
All participants can be muted in an active session using [Mute all endpoint](/api/v2#operations/MuteAllParticipants). You can also specify if participants can unmute themselves or not using `allow_unmute` option in request body. Refer to [Mute all endpoint](/api/v2#operations/MuteAllParticipants) to see complete details.
2828

2929
## Create a poll
30-
You can also create a poll in an active session programatically. Poll will always be created under your organization's name. You can specify different options while creating poll like `hide_votes`, `anonymous` etc. Refer to [Create Poll endpoint](/api/v2/#/operations/CreatePoll) to see complete details.
30+
You can also create a poll in an active session programatically. Poll will always be created under your organization's name. You can specify different options while creating poll like `hide_votes`, `anonymous` etc. Refer to [Create Poll endpoint](/api/v2#operations/CreatePoll) to see complete details.
3131

3232
You can see list of all endpoints for active session in `activesession` section under [v2 API Reference](/api/v2).

docs/ios/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ sidebar_position: 2
77
import Tabs from '@theme/Tabs';
88
import TabItem from '@theme/TabItem';
99

10-
Get the `roomName` for the meeting and the participant's `authToken` from our backend APIs (read more about our server APIs [here](/api/)), and pass them to Dyte's client SDK.
10+
Get the `roomName` for the meeting and the participant's `authToken` from our backend APIs (read more about our server APIs [here](/api)), and pass them to Dyte's client SDK.
1111

1212
There are 2 ways to manage a meeting view:
1313

0 commit comments

Comments
 (0)