diff --git a/.vscode/settings.json b/.vscode/settings.json index 49adcc8..2fe475b 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -8,5 +8,5 @@ "statusBarItem.remoteForeground": "#e7e7e7" }, "peacock.color": "#2e38fe", - "cSpell.words": ["hotjar"] + "cSpell.words": ["authenticable", "hotjar", "signup"] } diff --git a/docs/docusaurus.config.ts b/docs/docusaurus.config.ts index 93e9316..f5dc9a4 100644 --- a/docs/docusaurus.config.ts +++ b/docs/docusaurus.config.ts @@ -139,7 +139,8 @@ const config: Config = { }, prism: { theme: prismThemes.github, - darkTheme: prismThemes.dracula + darkTheme: prismThemes.dracula, + additionalLanguages: ['http', 'json'] } } satisfies Preset.ThemeConfig } diff --git a/docs/sidebars.ts b/docs/sidebars.ts index 400e333..71e3b24 100644 --- a/docs/sidebars.ts +++ b/docs/sidebars.ts @@ -28,7 +28,7 @@ const sidebars: SidebarsConfig = { }, { type: 'category', - label: '📄 Create your backend', + label: '📦 Entities and Properties', items: [ { type: 'doc', @@ -48,6 +48,20 @@ const sidebars: SidebarsConfig = { } ] }, + { + type: 'category', + label: '🔒 Auth and Access Control', + items: [ + { + type: 'doc', + id: 'authentication' + }, + { + type: 'doc', + id: 'policies' + } + ] + }, { type: 'category', label: '🔌 Connect to your backend',