Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

Commit

Permalink
feat: add auth section
Browse files Browse the repository at this point in the history
  • Loading branch information
Dino-Kupinic committed Mar 18, 2024
1 parent d02dc5a commit 74f0386
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 2 deletions.
13 changes: 12 additions & 1 deletion docs/.vitepress/de.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,18 @@ function sidebarUsers(): DefaultTheme.SidebarItem[] {
}

function sidebarDevelopers(): DefaultTheme.SidebarItem[] {
return []
return [
{
text: "Authentifizierung",
collapsed: false,
items: [
{
text: "LDAP",
link: "ldap",
},
],
},
]
}

export const search: DefaultTheme.LocalSearchOptions["locales"] = {
Expand Down
13 changes: 12 additions & 1 deletion docs/.vitepress/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,16 @@ function sidebarUsers(): DefaultTheme.SidebarItem[] {
}

function sidebarDevelopers(): DefaultTheme.SidebarItem[] {
return []
return [
{
text: "Authentication",
collapsed: false,
items: [
{
text: "LDAP",
link: "ldap",
},
],
},
]
}
1 change: 1 addition & 0 deletions docs/de/developers/ldap.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# LDAP
1 change: 1 addition & 0 deletions docs/developers/ldap.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# LDAP

0 comments on commit 74f0386

Please sign in to comment.