mirror of
https://github.com/goauthentik/authentik
synced 2026-04-26 01:25:02 +02:00
30 lines
636 B
JavaScript
30 lines
636 B
JavaScript
/**
|
|
* @import { SidebarItemConfig } from "@docusaurus/plugin-content-docs/src/sidebars/types.js"
|
|
*/
|
|
|
|
import categories from "./categories.mjs";
|
|
|
|
export default /** @type {SidebarItemConfig} */
|
|
({
|
|
integrations: [
|
|
{
|
|
type: "doc",
|
|
id: "index",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "applications",
|
|
},
|
|
...categories.map(([dirName, label]) => ({
|
|
type: "category",
|
|
label,
|
|
items: [
|
|
{
|
|
type: "autogenerated",
|
|
dirName,
|
|
},
|
|
],
|
|
})),
|
|
],
|
|
});
|