Hi!
I want to remove some of the stuff in the side menu and put that into a password locked separate page so people don’t mess with my settings while using it.
I’ve found the code where it’s building the sidebar but I can’t find where are menuItems stored so I can modify them.
<button
ng-repeat="item in sideMenu.menuItems track by $index"
ng-click="sideMenu.itemClick(item)"
class="btn-link btn-block">
{{::item.name}}
</button>
Sorry if it seems dumb but I don’t have much experience with Angular.
Any help about where to look or how is it supposed to function will be appreciated. Let me know if you need more info.
Thanks a lot!