-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsidebars.ts
More file actions
72 lines (70 loc) · 2.63 KB
/
sidebars.ts
File metadata and controls
72 lines (70 loc) · 2.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// @ts-check
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
const sidebars: SidebarsConfig = {
pageSidebar: [
{
type: "category",
label: "Introduction",
collapsible: true,
collapsed: false,
items: [
{type: "doc", id: "introduction", label: "Introduction to CueMeet"},
{type: "doc", id: "system-architecture", label: "System Architecture"},
],
},
{
type: "category",
label: "Setup Guides",
collapsible: true,
collapsed: false,
items: [
{type: "doc", id: "aws-setup"},
{type: "doc", id: "local-setup"},
],
},
{
type: "category",
label: "Bot API",
collapsible: true,
collapsed: false,
items: [
{type: "doc", id: "bot/api-info", label: "Authentication"},
{type: "doc", id: "bot/auth-controller-register", label: "Create a new user", className: "api-method post"},
{type: "doc", id: "bot/api-key-controller-create-api-key", label: "Create API key", className: "api-method post"},
{type: "doc", id: "bot/api-key-controller-list-api-keys", label: "List API keys", className: "api-method post"},
{type: "doc", id: "bot/api-key-controller-revoke-api-key", label: "Revoke API key", className: "api-method delete"},
{type: "doc", id: "bot/bot-controller-create-bot", label: "Create bot", className: "api-method post"},
{type: "doc", id: "bot/bot-controller-get-bot", label: "Retrieve bot", className: "api-method get"},
{type: "doc", id: "bot/bot-controller-leave-call", label: "Remove Bot From Call", className: "api-method post"},
{type: "doc", id: "bot/bot-controller-get-transcript", label: "Retrieve transcript", className: "api-method get"},
],
},
{
type: "category",
label: "Meeting Bots Guide",
collapsible: true,
collapsed: false,
items: [
{type: "doc", id: "meeting-bots", label: "Overview"},
{type: "doc", id: "google-bot", label: "Google Bot"},
{type: "doc", id: "zoom-bot", label: "Zoom Bot"},
{type: "doc", id: "microsoft-teams-bot", label: "Microsoft Teams Bot"},
],
},
],
openApiSidebar: [
{
type: "category",
label: " ",
link: {
type: "generated-index",
title: "Bot API",
description:
"Using this API, users can manage bots for meetings. The API provides endpoints for creating, configuring, and controlling bots to assist with meeting automation and management.",
slug: "/category/bot"
},
items: require("./docs/bot/sidebar.js")
}
]
};
export default sidebars;