Skip to content

Commit

Permalink
docs: nested sidebar format
Browse files Browse the repository at this point in the history
  • Loading branch information
lukegalbraithrussell committed Dec 19, 2024
1 parent 57add31 commit db9ab3c
Showing 1 changed file with 68 additions and 66 deletions.
134 changes: 68 additions & 66 deletions docs/sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,77 +7,79 @@ const sidebars = {
label: 'Bolt for JavaScript',
className: 'sidebar-title',
},
'getting-started',
{
type: 'category',
label: 'Slack API calls',
items: ['concepts/message-sending', 'concepts/web-api'],
},
{
type: 'category',
label: 'Events',
items: ['concepts/message-listening', 'concepts/event-listening'],
},
{
type: 'category',
label: 'App UI & Interactivity',
items: [
'concepts/acknowledge',
'concepts/shortcuts',
'concepts/commands',
'concepts/actions',
'concepts/creating-modals',
'concepts/updating-pushing-views',
'concepts/view-submissions',
'concepts/select-menu-options',
'concepts/publishing-views',
],
},
'concepts/assistant',
'concepts/custom-steps',
{ type: 'html', value: '<hr>' },
{
type: 'category',
label: 'App Configuration',
label: 'Guides',
collapsed: false,
items: [
'concepts/socket-mode',
'concepts/error-handling',
'concepts/logging',
'concepts/custom-routes',
'concepts/deferring-initialization',
'concepts/receiver',
'getting-started',
{
type: 'category',
label: 'Slack API calls',
items: ['concepts/message-sending', 'concepts/web-api'],
},
{
type: 'category',
label: 'Events',
items: ['concepts/message-listening', 'concepts/event-listening'],
},
{
type: 'category',
label: 'App UI & Interactivity',
items: [
'concepts/acknowledge',
'concepts/shortcuts',
'concepts/commands',
'concepts/actions',
'concepts/creating-modals',
'concepts/updating-pushing-views',
'concepts/view-submissions',
'concepts/select-menu-options',
'concepts/publishing-views',
],
},
'concepts/assistant',
'concepts/custom-steps',
{
type: 'category',
label: 'App Configuration',
items: [
'concepts/socket-mode',
'concepts/error-handling',
'concepts/logging',
'concepts/custom-routes',
'concepts/deferring-initialization',
'concepts/receiver',
],
},
{
type: 'category',
label: 'Middleware & Context',
items: ['concepts/global-middleware', 'concepts/listener-middleware', 'concepts/context'],
},
{
type: 'category',
label: 'Authorization & Security',
items: ['concepts/authenticating-oauth', 'concepts/authorization', 'concepts/token-rotation'],
},
{
type: 'category',
label: 'Deployments',
items: ['deployments/aws-lambda', 'deployments/heroku'],
},
{
type: 'category',
label: 'Migration Guides',
items: ['migration/migration-v2', 'migration/migration-v3', 'migration/migration-v4'],
},
{
type: 'category',
label: 'Legacy',
items: ['legacy/hubot-migration', 'legacy/steps-from-apps', 'legacy/conversation-store'],
},
],
},
{
type: 'category',
label: 'Middleware & Context',
items: ['concepts/global-middleware', 'concepts/listener-middleware', 'concepts/context'],
},
{
type: 'category',
label: 'Authorization & Security',
items: ['concepts/authenticating-oauth', 'concepts/authorization', 'concepts/token-rotation'],
},
{
type: 'category',
label: 'Deployments',
items: ['deployments/aws-lambda', 'deployments/heroku'],
},
{
type: 'category',
label: 'Migration Guides',
items: ['migration/migration-v2', 'migration/migration-v3', 'migration/migration-v4'],
},
{
type: 'category',
label: 'Legacy',
items: ['legacy/hubot-migration', 'legacy/steps-from-apps', 'legacy/conversation-store'],
},
{ type: 'html', value: '<hr>' },
{
type: 'category',
label: 'Tutorials',
items: ['tutorials/ai-assistant'],
},
{ type: 'html', value: '<hr>' },
'reference',
{ type: 'html', value: '<hr>' },
Expand Down

0 comments on commit db9ab3c

Please sign in to comment.