Getting Started Page
Multi-org applications can redirect users to a "Getting Started" page. This page can contain information about the application, its features, and how to use them.
After the application installation, the dialog will contain a button redirecting the user to the Getting Started page. You, as an application developer, can customize the button text and the URL of the page.
To add a custom menu item, the application must make the setUiExtensions
API call. For example:
The application must declare the used UI extensions with the
setUiExtensions
method during the initialization. Learn moreThe
gettingStartedUrl
can be:A relative URL – In this case, the "Getting Started" page must be a page within Space. For example,
gettingStartedUrl = "/im/%23Spacebox"
will resolve tohttps://mycompany.jetbrains.space/im/%23Spacebox
An absolute URL – In this case, the "Getting Started" page can be any page hosted on the same domain and port as the application. For example, if the application is hosted on
https://myapp.url
, thengettingStartedUrl = "https://myapp.url/getting-started"