New App will not show in Apps List side menu

I created a new app and I want it to show in the apps list as in the picture below:
image

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:
image

What should I do?

Create a workspace and link the module/app and reload and check it.

1 Like

Thank you.
That worked for me.

Here is the pic, for someone, who will search this topic

Now comes the next question: How can I limit the user only to My App.
The idea is to provide the user an access to the My App without an access to the frappe, and/or other apps installed. Thank you.