-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsidebars.admin.ts
More file actions
43 lines (41 loc) · 1.98 KB
/
Copy pathsidebars.admin.ts
File metadata and controls
43 lines (41 loc) · 1.98 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
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
const sidebars: SidebarsConfig = {
adminSidebar: [
{ type: "doc", id: "overview", label: "Overview" },
{ type: "doc", id: "install", label: "Install (Self-Hosted)" },
{ type: "doc", id: "github-integration", label: "GitHub Integration" },
{ type: "doc", id: "ai-providers", label: "Connect an AI Provider" },
{
type: "category",
label: "Practices",
collapsed: false,
items: [
{ type: "doc", id: "practice-catalog", label: "Practice Catalog" },
{ type: "doc", id: "practice-review", label: "Practice Review" },
{ type: "doc", id: "practice-review-operations", label: "Practice Review Operations" },
],
},
{ type: "doc", id: "webhook-ingestion-operations", label: "Webhook Ingestion Operations" },
{ type: "doc", id: "backup-restore", label: "Backup & Restore" },
{ type: "doc", id: "production-setup", label: "Integrations & Reference Deployment" },
{ type: "doc", id: "compatibility-policy", label: "Compatibility Policy" },
{ type: "doc", id: "runtime-roles", label: "Runtime Roles" },
{ type: "doc", id: "configuration-readiness", label: "Configuration Readiness" },
{ type: "doc", id: "threat-model", label: "Threat Model" },
{ type: "doc", id: "release-image-lock", label: "Release image lock" },
{ type: "doc", id: "buildpacks-cds-decision", label: "Server image build (Buildpacks + CDS)" },
{ type: "doc", id: "legal-pages", label: "Legal Pages" },
{
type: "category",
label: "Data-Protection Documentation",
link: { type: "doc", id: "dsms/dsms" },
items: [
{ type: "doc", id: "dsms/record-of-processing", label: "Record of Processing (Art. 30)" },
{ type: "doc", id: "dsms/dpia-prescreen", label: "DPIA Pre-Screen (Art. 35)" },
{ type: "doc", id: "dsms/processor-checklist", label: "Processor Checklist (Art. 28)" },
{ type: "doc", id: "dsms/artifact-source-governance", label: "Artifact-Source Governance" },
],
},
],
};
export default sidebars;