You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/pages/admin-ui-sdk/app-registration.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ description: Learn about registering your app in the App Registry
5
5
6
6
# App registration
7
7
8
-
When the application on App Builder is ready to be published, a registration to the Adobe Registry is required to add a menu in the Admin Panel.
8
+
Your app must be correctly configured with Adobe App Registry to use the Admin UI SDK to create a custom UI in Commerce. You must perform the following steps before submitting your app to be published.
Copy file name to clipboardExpand all lines: src/pages/admin-ui-sdk/troubleshooting.md
+11-3Lines changed: 11 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -13,15 +13,23 @@ It's common to have the App menu missing from the Commerce Admin Panel menu when
13
13
14
14
***The app is not correctly published in App Builder.** Go to the App project in the developer console and check that the Production workspace has a status of Published. If this is not the case, request an approval to publish and test again once the application in Approved.
15
15
16
-
*. **The latest changes are not correctly deployed and published.** Make sure to deploy the latest changes using `aio app deploy` in the correct `org/project/workspace`.
16
+
***The latest changes are not correctly deployed and published.** Make sure to deploy the latest changes using `aio app deploy` in the correct `org/project/workspace`.
17
+
18
+
***The `Magento_AdminAdobeIms`module has not been enabled.** Run the following command from the Adobe Commerce command line to check the status of this module.
19
+
20
+
`bin/magento module:status Magento_AdminAdobeIms`
21
+
22
+
If the response indicates the module has not been enabled, run the following command:
23
+
24
+
`bin/magento module:enable Magento_AdminAdobeIms`
17
25
18
26
***The registration of the menu is not correct.** Make sure that you defined the correct `menu` method with a `getItems` function that returns an array of the menus to register.
19
27
20
28
* To make sure your registration is correctly deployed, navigate in your browser to `<appURL>/index.html`. You can find your application URL in your project workspace in the Adobe developer console.
21
29
22
30
* Check the elements in your browser developer tools and look for the script `src` in the body. It usually has the format `index.<random>.js`.
23
31
24
-
Replace in the URL the `index.html` with this javascript to access its content. Search for `getItems` for example and make sure the registration defined in your app is the same one you see deployed.
32
+
Replace in the URL the `index.html` with this javascript to access its content. Search for `getItems` for example and make sure the registration defined in your app is the same one you see deployed.
25
33
26
34
## App page is not displayed when accessing the menu
27
35
@@ -32,7 +40,7 @@ An app page is not displayed when the `extensionId` specified doesn't match with
32
40
*`extension:getId` method that returns a string with the `extensionId`.
33
41
*`page:getTitle` method that returns a string with the page title.
34
42
35
-
*. Check the `extensionId` is the same used in the registration to identify correctly the application with a unique name.
43
+
* Check the `extensionId` is the same used in the registration to identify correctly the application with a unique name.
0 commit comments