mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-31 01:47:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			384 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			384 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| # Customizing the Admin leftMenu
 | |
| 
 | |
| You can choose which *Content Types* you want to display in the admin.
 | |
| 
 | |
| 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: '',
 | |
|       destination: 'user'
 | |
|     }
 | |
|   ],
 | |
| };
 | |
| ```
 | 
