I created a new app and I want it to show in the apps list as in the picture below:
What I did:
I followed
https://frappeframework.com/docs/user/en/guides/app-development/adding-module-icons-on-desktop
and in hooks.py
add_to_apps_screen = [
{
“name”: “my_app”,
“logo”: “/assets/my_app/images/logo.png”,
“title”: “my_app”,
“route”: “/my_app”,
}
]
one of these worked and the App Icon shown in /apps route,
but not in the apps list side menu.
I saw this New App will not show in Sidebar
But it suggests to add workspace, not the app list.
The idea is to show only relevant workspace as here:
What should I do?