Files
medusa-store/www/apps/resources/sidebars/user.mjs
Shahed Nasser fd1afa8bc9 docs: split events reference across modules (#10711)
* docs: split events reference across modules

* add lint exceptions
2024-12-24 09:54:51 +02:00

78 lines
2.0 KiB
JavaScript

/** @type {import('types').RawSidebarItem[]} */
export const userSidebar = [
{
type: "category",
title: "User Module",
isChildSidebar: true,
children: [
{
type: "link",
path: "/commerce-modules/user",
title: "Overview",
},
{
type: "link",
path: "/commerce-modules/user/module-options",
title: "Module Options",
},
{
type: "link",
path: "/commerce-modules/user/examples",
title: "Examples",
},
{
type: "sub-category",
title: "Guides",
children: [
{
type: "link",
path: "/commerce-modules/user/user-creation-flows",
title: "User Creation Flows",
},
],
},
{
type: "sub-category",
title: "References",
children: [
{
type: "link",
path: "/commerce-modules/user/events",
title: "Events Reference",
},
{
type: "link",
path: "/references/user",
title: "Main Service Reference",
isChildSidebar: true,
childSidebarTitle: "User Module's Main Service Reference",
children: [
{
type: "category",
title: "Methods",
autogenerate_path:
"/references/user/IUserModuleService/methods",
},
],
},
{
type: "link",
path: "/references/user/models",
title: "Data Models Reference",
isChildSidebar: true,
childSidebarTitle: "User Module Data Models Reference",
children: [
{
type: "category",
title: "Data Models",
hasTitleStyling: true,
autogenerate_path: "/references/user_models/variables",
},
],
},
],
},
],
},
]