Skip to content

Commit

Permalink
making each page in MVP testplan part of a sidebard for easier nav (f…
Browse files Browse the repository at this point in the history
  • Loading branch information
gitaaron committed Aug 2, 2022
1 parent 95b0c59 commit 49328c3
Show file tree
Hide file tree
Showing 4 changed files with 68 additions and 9 deletions.
7 changes: 2 additions & 5 deletions docs/mvp.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ id: mvp

The following describes how the Box software will work from the owner's perspective.

[Unboxing](./mvp/unboxing)

[Box Admin](./mvp/box-admin)

[Fotos](./mvp/fotos)
[Fotos](/mvp/fotos)

[Pools](/mvp/pools)
4 changes: 1 addition & 3 deletions docs/mvp/fotos.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,4 @@ id: fotos

* [backup](./fotos/backup)

* [availability](./fotos/availability)

* [sharing](./fotos/setup)
* [sharing](./fotos/sharing)
9 changes: 9 additions & 0 deletions docs/mvp/pools.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
title: Pools
id: pools
---

# Pools Stories

* [storage provide](./pools/storage-provide)

57 changes: 56 additions & 1 deletion sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,63 @@ const sidebars = {
'RFCs/document-syncing',
'RFCs/personal-data-reserve'
]
}
},
],
mvpSidebar: [
{
type: 'category',
label: 'MVP',
link: {
type:'doc',
id:'mvp'
},
items:[
{
type:'category',
label:'Fotos',
link: {
type:'doc',
id:'mvp/fotos'
},
items:[
{
type:'doc',
label:'setup',
id:'mvp/fotos/setup'
},
{
type:'doc',
label:'backup',
id:'mvp/fotos/backup'
},
{
type:'doc',
label:'sharing',
id:'mvp/fotos/sharing'
}


]
},
{
type:'category',
label:'Pools',
link: {
type:'doc',
id:'mvp/pools'
},
items:[
{
type:'doc',
label:'provide storage',
id:'mvp/pools/storage-provide'
}
]
}
]
},

]
};

module.exports = sidebars;

0 comments on commit 49328c3

Please sign in to comment.