strapi/packages/core/admin/doc/customize-menu.md

18 lines
386 B
Markdown
Raw Normal View History

2018-04-05 11:13:49 +02:00
# Customizing the Admin leftMenu
2021-04-29 11:11:46 +02:00
You can choose which _Content Types_ you want to display in the admin.
2018-04-05 11:13:49 +02:00
For example if you want to display only the `user` content type you have to edit the `layout.js` file located in
`my-project/admin/config/layout.js` as follows:
```js
module.exports = {
contentTypesToShow: [
{
label: '',
2021-04-29 11:11:46 +02:00
destination: 'user',
},
2018-04-05 11:13:49 +02:00
],
};
```